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