Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
misc
/
abc_error
/
top.v
blob: 385206a3484f8d1ec0a0dbd5074d9d02d262e029 [
file
] [
log
] [
blame
]
module
top
(
input x
,
input y
,
input cin
,
output A
,
output cout
);
`ifndef BUG
assign cout = x / y * cin;
`
else
assign
{
cout
,
A
}
=
cin
-
y
*
x
;
`endif
endmodule