aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-06-07 13:08:18 +0200
committerDavid Shah <davey1576@gmail.com>2018-06-07 13:08:18 +0200
commit6236a1042797be90224461adf23243e0bb16f2fe (patch)
tree9af394af6eae8f6d8b0dc9fce83410f545e06d91 /python
parent9ebc879826cfcc43b7ed68cf3514a42cb3625177 (diff)
downloadnextpnr-6236a1042797be90224461adf23243e0bb16f2fe.tar.gz
nextpnr-6236a1042797be90224461adf23243e0bb16f2fe.tar.bz2
nextpnr-6236a1042797be90224461adf23243e0bb16f2fe.zip
Fixing file->run renaming
Signed-off-by: David Shah <davey1576@gmail.com>
Diffstat (limited to 'python')
-rw-r--r--python/dump_design.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/dump_design.py b/python/dump_design.py
index b8436288..22d4ab17 100644
--- a/python/dump_design.py
+++ b/python/dump_design.py
@@ -1,4 +1,4 @@
-# Run ./nextpnr-ice40 --json ice40/blinky.json --file python/dump_design.py
+# Run ./nextpnr-ice40 --json ice40/blinky.json --run python/dump_design.py
for cell in sorted(design.cells, key=lambda x: x.first):
print("Cell {} : {}".format(cell.first, cell.second.type))
for port in sorted(cell.second.ports, key=lambda x: x.first):