Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-008
/
slot-040
/
e8dc6a88d5703420d1fe9ad582b766e92c252fab
/
.
/
verilog
/
rtl
/
u22.v
blob: 6c0dfa812944156f70a9a8563a0cb5896b586d34 [
file
] [
log
] [
blame
]
module
u22
(
input
[
5
:
0
]
in
,
output
[
1
:
0
]
out
);
wire a
,
b
,
c
,
d
,
e
,
f
;
assign
{
a
,
b
,
c
,
d
,
e
,
f
}
=
in
;
wire x
=
(((
a
&~
b
)^
c
^
d
)&(
c
|
e
|
a
))^((
b
^
a
^
f
)|(
d
&~
c
));
wire y
=
(((
a
&~
b
)^
c
^
d
)&(
c
|
e
|~
a
))^((
b
^
a
)|(
d
&~
c
)|
e
);
assign
out
=
{
x
,
y
};
endmodule