Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
d76ac32ec939e421190d8e41ee0ad5e5eacbddd5
/
.
/
icefuzz
/
tests
/
sb_dff.v
blob: 4a680b18f69cecbbe55dcd58192648e9f70c61dd [
file
] [
log
] [
blame
]
module
top
(
input C
,
D
,
output Q
);
SB_DFF ff
(.
C
(
C
),
.
D
(
D
),
.
Q
(
Q
));
endmodule