mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-10 13:10:51 +00:00
support other I/O configurations
This commit is contained in:
parent
34f08bc639
commit
41ae513d60
3 changed files with 14 additions and 6 deletions
|
@ -6,3 +6,10 @@ module \$__BEYOND_OBUF (output PAD, input I);
|
|||
NX_IOB_O _TECHMAP_REPLACE_ (.IO(PAD), .I(I), .C(1'b1));
|
||||
endmodule
|
||||
|
||||
module \$__BEYOND_TOBUF (output PAD, input I, input C);
|
||||
NX_IOB _TECHMAP_REPLACE_ (.IO(PAD), .I(I), .C(C));
|
||||
endmodule
|
||||
|
||||
module \$__BEYOND_IOBUF (output PAD, input I, output O, output C);
|
||||
NX_IOB _TECHMAP_REPLACE_ (.IO(PAD), .I(I), .O(O), .C(C));
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue