7 lines
181 B
Python
7 lines
181 B
Python
from nextpnrpy_ice40 import Chip, ChipArgs, iCE40Type
|
|
args = ChipArgs()
|
|
args.type = iCE40Type.LP384
|
|
chip = Chip(args)
|
|
for wire in chip.getWires():
|
|
print(chip.getWireName(wire))
|