Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
frontends
/
read
/
top.v
blob: b0e34d2dc5186866400ce231e651674271e951a5 [
file
] [
log
] [
blame
]
module
top
(
input x
,
input y
,
input cin
,
input clk
,
output A
,
output cout
);
`ifndef BUG
assign A = y + cin;
assign cout = x + A;
`
else
assign
{
cout
,
A
}
=
cin
-
y
*
x
;
`endif
endmodule