mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-03 00:28:08 +00:00
remove not needed top module
This commit is contained in:
parent
a198bcdd4f
commit
1a399c6456
2 changed files with 2 additions and 17 deletions
|
@ -6,18 +6,3 @@ module tristate (en, i, o);
|
|||
always @(en or i)
|
||||
o <= (en)? i : 1'bZ;
|
||||
endmodule
|
||||
|
||||
|
||||
module top (
|
||||
input en,
|
||||
input a,
|
||||
output b
|
||||
);
|
||||
|
||||
tristate u_tri (
|
||||
.en (en ),
|
||||
.i (a ),
|
||||
.o (b )
|
||||
);
|
||||
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue