Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
56978cde58b1d8b5d3becc692ca2b4d72094b2b8
/
.
/
icefuzz
/
tests
/
carry.v
blob: 42aae8663e9139e2f4d264e13a1906548633dc07 [
file
] [
log
] [
blame
]
module
top
(
input a
,
b
,
ci
,
output co
);
SB_CARRY carry_cell
(
.
I0
(
a
),
.
I1
(
b
),
.
CI
(
ci
),
.
CO
(
co
)
);
endmodule