1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-02-01 06:22:35 +00:00
Files
YosysHQ.nextpnr/python/python_test.py
2018-06-02 13:48:28 +02:00

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))