mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
47fa7ff23d
Goal is to create models for all of these
22 lines
276 B
Verilog
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
|
|
|