Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
51a11ffc81a09bd464f4ef637646fa682d281f54
/
.
/
icefuzz
/
tests
/
sb_dffsr.v
blob: 48cc7f2dcbdf13ac46fc7d6403ee35cc99cd8576 [
file
] [
log
] [
blame
]
module
top
(
input C
,
D
,
R
,
output Q
);
SB_DFFSR ff
(.
C
(
C
),
.
D
(
D
),
.
R
(
R
),
.
Q
(
Q
));
endmodule