3
0
Fork 0
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:
Andrew Zonenberg 2016-05-03 22:53:29 -07:00
parent 66095153fd
commit dcee3256d5
5 changed files with 29 additions and 2 deletions

View file

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