Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
868d2ac08b82bf4ee52282bc33a46556c3d08ac9
/
.
/
icefuzz
/
tests
/
sb_dffes.v
blob: e1d7a13a247998167e342e8091149cf48a63e338 [
file
] [
log
] [
blame
]
module
top
(
input C
,
D
,
E
,
S
,
output Q
);
SB_DFFES ff
(.
C
(
C
),
.
D
(
D
),
.
E
(
E
),
.
S
(
S
),
.
Q
(
Q
));
endmodule