diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-06-20 15:08:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-20 15:08:48 +0200 |
commit | cfac9f950412ae139fa3c085c21881cbaf24822f (patch) | |
tree | 13315e25255a9f25f053ce704b4cfd1b5fd64fc7 /icefuzz/extract.py | |
parent | 2a26cfac3e1fd88718ab9bb31fac7f149b5f70b8 (diff) | |
parent | 56978cde58b1d8b5d3becc692ca2b4d72094b2b8 (diff) | |
download | icestorm-cfac9f950412ae139fa3c085c21881cbaf24822f.tar.gz icestorm-cfac9f950412ae139fa3c085c21881cbaf24822f.tar.bz2 icestorm-cfac9f950412ae139fa3c085c21881cbaf24822f.zip |
Merge pull request #223 from corecode/u4k
add RGB_DRV/LED_DRV_CUR for u4k
Diffstat (limited to 'icefuzz/extract.py')
-rw-r--r-- | icefuzz/extract.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icefuzz/extract.py b/icefuzz/extract.py index 32bf289..75a65fa 100644 --- a/icefuzz/extract.py +++ b/icefuzz/extract.py @@ -41,7 +41,7 @@ for filename in sys.argv[1:]: cur_text_db = text_db.setdefault("ipcon_5k", set()) ignore = False elif device_class == "u4k" and line.startswith("IpCon"): - cur_text_db = text_db.setdefault("ipcon_u4k", set()) + cur_text_db = text_db.setdefault("ipcon_5k", set()) ignore = False elif device_class == "5k" and line.startswith("DSP"): match = re.match(r"DSP_Tile_\d+_(\d+)", line) @@ -71,7 +71,7 @@ for filename in sys.argv[1:]: if ypos in [8, 16]: dsp_idx = 3 assert dsp_idx != None - cur_text_db = text_db.setdefault("dsp%d_u4k" % dsp_idx, set()) + cur_text_db = text_db.setdefault("dsp%d_5k" % dsp_idx, set()) ignore = False elif not ignore: print("'" + line + "'") |