mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 04:01:25 +00:00
Added tri-state I/O extraction for GreenPak
This commit is contained in:
parent
66095153fd
commit
dcee3256d5
5 changed files with 29 additions and 2 deletions
|
@ -24,6 +24,15 @@ module GP_DFFR(input D, CLK, nRST, output reg Q);
|
|||
);
|
||||
endmodule
|
||||
|
||||
module GP_OBUFT(input IN, input OE, output OUT);
|
||||
GP_IOBUF _TECHMAP_REPLACE_ (
|
||||
.IN(IN),
|
||||
.OE(OE),
|
||||
.IO(OUT),
|
||||
.OUT()
|
||||
);
|
||||
endmodule
|
||||
|
||||
module \$lut (A, Y);
|
||||
parameter WIDTH = 0;
|
||||
parameter LUT = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue