aboutsummaryrefslogtreecommitdiffstats
path: root/python/python_test.py
blob: 1a6ebfc653c1738c81a77d3891e359e91b761b21 (plain)
1
2
3
4
5
6
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))