1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-13 15:43:34 +00:00

Simple Python test working

Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
David Shah
2018-06-01 15:53:46 +02:00
parent f353453a7f
commit d3f74eb056
4 changed files with 65 additions and 2 deletions

6
python_test.py Normal file
View File

@@ -0,0 +1,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))