OpenCores
URL https://opencores.org/ocsvn/hpdmc/hpdmc/trunk

Subversion Repositories hpdmc

[/] [hpdmc/] [trunk/] [hpdmc_ddr32/] [test/] [idelay.v] - Blame information for rev 21

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 21 lekernel
/*
2
 * Simplified IDELAY model.
3
 * Only fixed delay type is implemented and assumed.
4
 */
5
 
6
`timescale 1ns / 1ps
7
 
8
module IDELAY #(
9
        parameter IOBDELAY_TYPE = "DEFAULT",
10
        parameter IOBDELAY_VALUE = 0
11
) (
12
        input C,
13
        input CE,
14
        input I,
15
        input INC,
16
        input RST,
17
        output reg O
18
);
19
 
20
always @(I)
21
        # (IOBDELAY_VALUE*0.078) O = I;
22
 
23
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.