1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-30 02:32:53 +08:00
oh/stubs/hdl/ODDR.v
aolofsson 47fa7ff23d Adding stubs files for xilinx IP
Goal is to create models for all of these
2014-12-14 22:21:01 -05:00

22 lines
276 B
Verilog

module ODDR (/*AUTOARG*/
// Outputs
Q,
// Inputs
C, CE, D1, D2, R, S
);
parameter DDR_CLK_EDGE=0;
parameter INIT=0;
parameter SRTYPE=0;
input C;
input CE;
input D1;
input D2;
input R;
input S;
output Q;
endmodule // ODDR