diff options
author | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-03-27 18:39:33 +0100 |
---|---|---|
committer | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-03-27 18:39:33 +0100 |
commit | e831892511c1440df4e20f5ae1478c2b86d17060 (patch) | |
tree | b16f6e81a8c97bc4c926fbbc4bc05c8c29747101 /tools/asm_processor/asm_processor.py | |
parent | 352625ff40a989775c396b1db2c6e4fcc22b1967 (diff) |
asm_processor: split padding functions are broken so set a high limit
Diffstat (limited to 'tools/asm_processor/asm_processor.py')
-rwxr-xr-x | tools/asm_processor/asm_processor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/asm_processor/asm_processor.py b/tools/asm_processor/asm_processor.py index 13ebf106..f0054204 100755 --- a/tools/asm_processor/asm_processor.py +++ b/tools/asm_processor/asm_processor.py @@ -9,7 +9,7 @@ import os from collections import namedtuple, defaultdict from io import StringIO -MAX_FN_SIZE = 100 +MAX_FN_SIZE = 3000 SLOW_CHECKS = False EI_NIDENT = 16 |