-
Notifications
You must be signed in to change notification settings - Fork 71
ODDR
Pepijn de Vos edited this page Nov 17, 2024
·
4 revisions
Port | Size | Direction |
---|---|---|
CLK | 1 | input |
D0 | 1 | input |
D1 | 1 | input |
Q0 | 1 | output |
Q1 | 1 | output |
TX | 1 | input |
Parameter | Default Value |
---|---|
INIT | 0 (0b00000000000000000000000000000000) |
TXCLK_POL | 0 (0b00000000000000000000000000000000) |
ODDR #(
.INIT(INIT),
.TXCLK_POL(TXCLK_POL)
) oddr_inst (
.CLK(CLK),
.D0(D0),
.D1(D1),
.Q0(Q0),
.Q1(Q1),
.TX(TX)
);