Made all attributes lower case

This commit is contained in:
stefandesouza
2024-02-22 13:48:56 +01:00
parent 07f1af966d
commit 04388af5dd

View File

@@ -8,14 +8,14 @@ class BaseParser(object):
# Identifiers for operand types
comment_id = "comment"
directive_id = "directive"
IMMEDIATE_ID = "immediate"
immediate_id = "immediate"
label_id = "label"
IDENTIFIER_ID = "identifier"
MEMORY_ID = "memory"
REGISTER_ID = "register"
CONDITION_ID = "condition"
segment_ext_id = "segment_extension"
instruction_id = "instruction"
identifier_id = "identifier"
memory_id = "memory"
register_id = "register"
condition_id = "condition"
segment_ext = "segment_extension"
mnemonic = "instruction"
operands_id = "operands"
_parser_constructed = False