diff options
author | David Shah <davey1576@gmail.com> | 2018-06-02 13:33:45 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-02 13:48:28 +0200 |
commit | 363ddd0f3c6e1e2f9e5caf2851ffcacf32765437 (patch) | |
tree | cdba5841cdcbfe126dfd088b8bf6906d33fd4282 /python_test.py | |
parent | d3f74eb0567b557f261018131a04ab5eed3ddb7e (diff) | |
download | nextpnr-363ddd0f3c6e1e2f9e5caf2851ffcacf32765437.tar.gz nextpnr-363ddd0f3c6e1e2f9e5caf2851ffcacf32765437.tar.bz2 nextpnr-363ddd0f3c6e1e2f9e5caf2851ffcacf32765437.zip |
Python bindings working on both architectures
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'python_test.py')
-rw-r--r-- | python_test.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/python_test.py b/python_test.py deleted file mode 100644 index 1a6ebfc6..00000000 --- a/python_test.py +++ /dev/null @@ -1,6 +0,0 @@ -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)) |