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