Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
9feee6fe73aa5195cb7e9a2bf9ab3c6a3ff0980d
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
architecture
/
ice40_wrapcarry_adders
/
top.v
blob: 12d90323c3834127a122884f7e5da9b833d707fb [
file
] [
log
] [
blame
]
module
top
(
input
[
15
:
0
]
x
,
input
[
15
:
0
]
y
,
output
[
15
:
0
]
A
,
output
[
15
:
0
]
B
);
assign A
=
x
+
y
;
assign B
=
x
-
y
;
endmodule