mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-07 19:51:23 +00:00
Added Xilinx example for Basys3 board
This commit is contained in:
parent
6978f3a77b
commit
816fe6bbe0
9 changed files with 84 additions and 1 deletions
|
@ -19,7 +19,7 @@ module OBUF(output O, input I);
|
|||
assign O = I;
|
||||
endmodule
|
||||
|
||||
module BUFGP(output O, input I);
|
||||
module BUFG(output O, input I);
|
||||
assign O = I;
|
||||
endmodule
|
||||
|
||||
|
@ -27,6 +27,10 @@ module OBUFT(output O, input I, T);
|
|||
assign O = T ? 1'bz : I;
|
||||
endmodule
|
||||
|
||||
module IOBUF(inout IO, output O, input I, T);
|
||||
assign O = IO, IO = T ? 1'bz : I;
|
||||
endmodule
|
||||
|
||||
module INV(output O, input I);
|
||||
assign O = !I;
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue