Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
refs/heads/mithro-patch-1
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
misc
/
tcl
/
top.v
blob: 1e99384209629eeb960746df5baf0a398bea2b24 [
file
] [
log
] [
blame
] [
edit
]
(*
black_box
*)
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