Sign in
foss-fpga-tools
/
third_party
/
yosys
/
f6fabc8fda1eb00b0227f1a91d85b837a0609728
/
.
/
passes
/
tests
/
flowmap
/
pack1.v
blob: 9454edf3ce14d9e1e7e3f05d95240ad55ffd5dd9 [
file
] [
log
] [
blame
]
// Exact reproduction of Figure 3(a) from 10.1109/92.285741.
module
top
(...);
input a
,
b
,
c
,
d
,
e
,
f
,
g
,
h
;
wire x
=
!(
c
|
d
);
wire y
=
!(
e
&
f
);
wire u
=
!(
a
&
b
);
wire v
=
!(
x
|
y
);
wire w
=
!(
g
&
h
);
output s
=
!(
u
|
v
);
output t
=
!(
v
|
w
);
endmodule