1
0
mirror of synced 2026-05-01 14:07:24 +00:00

initial import

This commit is contained in:
Clifford Wolf
2013-01-05 11:13:26 +01:00
commit 7764d0ba1d
481 changed files with 54634 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
module tri_buf (a,b,enable);
input a;
output b;
input enable;
wire b;
assign b = (enable) ? a : 1'bz;
endmodule