Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
56978cde58b1d8b5d3becc692ca2b4d72094b2b8
/
.
/
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