3
0
Fork 0
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:
Clifford Wolf 2013-06-26 12:34:06 +02:00
parent 101491132f
commit a5fe2565b7
5 changed files with 69 additions and 7 deletions

View file

@ -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