We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 520db0e commit 7085910Copy full SHA for 7085910
Assembler/Assembler.py
@@ -30,7 +30,7 @@ class Assembler(object):
30
full_line_comment = re.compile(ur'^\s*#.*')
31
inline_comment_regex = re.compile(ur'#.+$')
32
label_regex = re.compile(ur'^.*?(?=:)')
33
- argument_regex = re.compile(ur'([\w|$]+)')
+ argument_regex = re.compile(ur'(-*[\w|$]+)')
34
between_parentheses = re.compile(ur'(?<=\().+(?=\))')
35
before_parentheses = re.compile(ur'(?<=\s).+(?=\()')
36
0 commit comments