aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-07-30 15:58:13 +0200
committerDavid Shah <davey1576@gmail.com>2018-07-30 15:58:13 +0200
commit1cde20273a48b0716cf1b3206edaff716fc78097 (patch)
treef77e46612d82329829d3798ec6e9b7af640efb89 /python
parentb5f90d381481dc3658c408b162aa433e183f79f4 (diff)
downloadnextpnr-1cde20273a48b0716cf1b3206edaff716fc78097.tar.gz
nextpnr-1cde20273a48b0716cf1b3206edaff716fc78097.tar.bz2
nextpnr-1cde20273a48b0716cf1b3206edaff716fc78097.zip
python: Remove obsolete python_mod_test.py
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'python')
-rw-r--r--python/python_mod_test.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/python_mod_test.py b/python/python_mod_test.py
deleted file mode 100644
index e7a8de94..00000000
--- a/python/python_mod_test.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# Run: PYTHONPATH=. python3 python/python_mod_test.py
-from nextpnrpy_ice40 import Chip, ChipArgs, iCE40Type
-args = ChipArgs()
-args.type = iCE40Type.HX1K
-chip = Chip(args)
-for wire in chip.getWires():
- print(chip.getWireName(wire))