mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 04:31:25 +00:00
Share common tests
This commit is contained in:
parent
ab98f2dccf
commit
5603595e5c
103 changed files with 179 additions and 1317 deletions
8
tests/arch/common/tribuf.v
Normal file
8
tests/arch/common/tribuf.v
Normal file
|
@ -0,0 +1,8 @@
|
|||
module tristate (en, i, o);
|
||||
input en;
|
||||
input i;
|
||||
output reg o;
|
||||
|
||||
always @(en or i)
|
||||
o <= (en)? i : 1'bZ;
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue