Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
861ed7dc3ad91ddad1bf155cd28bdc110f3a5abb
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
regression
/
issue_00809
/
top.v
blob: 34c4ca7b609d6fcb052220b96cd210555a1fb64f [
file
]
module
top
(
C
,
O
,
A
,
B
);
input
[
3
:
0
]
A
;
input
[
3
:
0
]
B
;
output
[
3
:
0
]
O
;
output C
;
assign
{
C
,
O
}
=
A
+
B
;
endmodule