Skip to content

Commit c635b0e

Browse files
committed
Lower debug level for zxbasm
Will require only -dd now to debug zxbasm parsing
1 parent a91941c commit c635b0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zxbasm/asmparse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1460,7 +1460,7 @@ def assemble(input_):
14601460
else:
14611461
parser_ = parser
14621462

1463-
parser_.parse(input_, lexer=LEXER, debug=OPTIONS.Debug.value > 2)
1463+
parser_.parse(input_, lexer=LEXER, debug=OPTIONS.Debug.value > 1)
14641464
if len(MEMORY.scopes):
14651465
error(MEMORY.scopes[-1], 'Missing ENDP to close this scope')
14661466

0 commit comments

Comments
 (0)