mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-09-08 20:47:34 +02:00
10 lines
126 B
Verilog
10 lines
126 B
Verilog
module tri_buf (a,b,enable);
|
|
input a;
|
|
output b;
|
|
input enable;
|
|
wire b;
|
|
|
|
assign b = (enable) ? a : 1'bz;
|
|
|
|
endmodule
|