mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 20:21:25 +00:00
add io mapping
This commit is contained in:
parent
65d2ebac9d
commit
4c1f84a686
3 changed files with 21 additions and 6 deletions
8
techlibs/nanoxplore/io_map.v
Normal file
8
techlibs/nanoxplore/io_map.v
Normal file
|
@ -0,0 +1,8 @@
|
|||
module \$__BEYOND_IBUF (input PAD, output O);
|
||||
NX_IOB_I _TECHMAP_REPLACE_ (.IO(PAD), .O(O), .C(1'b0));
|
||||
endmodule
|
||||
|
||||
module \$__BEYOND_OBUF (output PAD, input I);
|
||||
NX_IOB_O _TECHMAP_REPLACE_ (.IO(PAD), .I(I), .C(1'b1));
|
||||
endmodule
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue