mirror of
https://github.com/rdolbeau/NuBusFPGA.git
synced 2024-12-22 10:29:53 +00:00
13 lines
163 B
Verilog
13 lines
163 B
Verilog
module sn74lvt145_quarter
|
|
(
|
|
input oe_n,
|
|
input in,
|
|
output out
|
|
);
|
|
|
|
assign out = oe_n ? 'bZ : in;
|
|
|
|
endmodule // sn74lvt145_quarter
|
|
|
|
|