Sign in
foss-eda-tools
/
skywater-src-nda
/
313e9e5332252778f37f94c20ce66d7e66a36308
/
.
/
scs8hs
/
V0.0.1
/
verilog
/
U_MUX_2_1_INV.v
blob: d4c8fbd03290a7b1d6c5e42b046c435f0d714bc7 [
file
] [
log
] [
blame
]
primitive U_MUX_2_1_INV
(
Y
,
A0
,
A1
,
S
);
input A0
,
A1
,
S
;
output Y
;
// FUNCTION : TWO TO ONE MULTIPLEXER WITH INVERTING OUTPUT
table
// A0 A1 S : Y
0
?
0
:
1
;
1
?
0
:
0
;
?
0
1
:
1
;
?
1
1
:
0
;
0
0
?
:
1
;
1
1
?
:
0
;
endtable
endprimitive