mirror of
https://github.com/YosysHQ/yosys
synced 2025-11-01 20:17:55 +00:00
Added vivado support to xsthammer
This commit is contained in:
parent
101491132f
commit
a5fe2565b7
5 changed files with 69 additions and 7 deletions
|
|
@ -1,4 +1,16 @@
|
|||
|
||||
module IBUF(O, I);
|
||||
output O;
|
||||
input I;
|
||||
assign O = I;
|
||||
endmodule
|
||||
|
||||
module OBUF(O, I);
|
||||
output O;
|
||||
input I;
|
||||
assign O = I;
|
||||
endmodule
|
||||
|
||||
module GND(G);
|
||||
output G = 0;
|
||||
endmodule
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue