Skip to content

Commit

Permalink
LP384 support in icefuzz (Makefile,icebox.sh,etc)
Browse files Browse the repository at this point in the history
  • Loading branch information
hermitsoft committed Mar 7, 2017
1 parent d3e3688 commit 2281f91
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions icefuzz/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@
db = set()
text_db = dict()
mode_8k = False
mode_384 = False
cur_text_db = None
max_x, max_y = 0, 0

if sys.argv[1] == '-8':
sys.argv = sys.argv[1:]
mode_8k = True

if sys.argv[1] == '-3':
sys.argv = sys.argv[1:]
mode_384 = True

for filename in sys.argv[1:]:
with open(filename, "r") as f:
for line in f:
Expand Down

0 comments on commit 2281f91

Please sign in to comment.