mirror of
https://github.com/rdolbeau/NuBusFPGA.git
synced 2025-01-03 11:29:46 +00:00
13 lines
163 B
Coq
13 lines
163 B
Coq
|
module sn74lvt145_quarter
|
||
|
(
|
||
|
input oe_n,
|
||
|
input in,
|
||
|
output out
|
||
|
);
|
||
|
|
||
|
assign out = oe_n ? 'bZ : in;
|
||
|
|
||
|
endmodule // sn74lvt145_quarter
|
||
|
|
||
|
|