Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
76425fe9c1b685310008913d97503847d2f7f72e
/
.
/
src
/
Testcases
/
YosysTests
/
misc
/
mutate_error
/
top.v
blob: 54b5efbd3c170b1c4480171f443b5653976d9abc [
file
]
module
top
(
input x
,
input y
,
input cin
,
output A
,
output cout
);
`ifndef BUG
assign {cout,A} = cin + y + x;
`
else
assign
{
cout
,
A
}
=
cin
-
y
*
x
;
`endif
endmodule