Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
a50fc0da15e88d7b685f92dc843d3d71b716c8a4
/
.
/
src
/
Testcases
/
YosysTests
/
architecture
/
ice40_wrapcarry
/
top.v
blob: d3a9e642667d637366a8c89e57bf3d0f3da07c0a [
file
]
module
top
(
input
[
3
:
0
]
x
,
input
[
3
:
0
]
y
,
output
[
3
:
0
]
A
,
output
[
3
:
0
]
B
);
assign B
=
x
/
y
;
endmodule