Sign in
foss-fpga-tools
/
third_party
/
yosys
/
c03b6a3e9cab9fc05b2d5b256676f5ddc6c2d763
/
.
/
techlibs
/
ice40
/
tests
/
test_arith.v
blob: 77f79b973d75d96f55fb67cfe102ba4dc9b515db [
file
] [
log
] [
blame
]
module
test
(
input
[
4
:
0
]
a
,
b
,
c
,
output
[
4
:
0
]
y
);
assign y
=
((
a
+
b
)
^
(
a
-
c
))
-
((
a
*
b
)
+
(
a
*
c
)
-
(
b
*
c
));
endmodule