Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
3f4e38faba84ce292e5f05601b70dd598f686411
/
.
/
SVIncCompil
/
Testcases
/
YosysTests
/
backends
/
write_simplec_logic
/
top.v
blob: da9a2f87f21543833b83c8edfb4b421cedd18d53 [
file
] [
log
] [
blame
]
module
top
(
input x
,
input y
,
input z
,
input clk
,
input A
,
output B
);
`ifndef BUG
assign B = (x || y || !z)? (A & z) : ~x;
`
else
assign B
=
z
-
y
+
x
;
`endif
endmodule