diff options
author | David Shah <davey1576@gmail.com> | 2018-07-30 15:58:13 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-07-30 15:58:13 +0200 |
commit | 1cde20273a48b0716cf1b3206edaff716fc78097 (patch) | |
tree | f77e46612d82329829d3798ec6e9b7af640efb89 /python/python_mod_test.py | |
parent | b5f90d381481dc3658c408b162aa433e183f79f4 (diff) | |
download | nextpnr-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/python_mod_test.py')
-rw-r--r-- | python/python_mod_test.py | 7 |
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)) |