diff options
Diffstat (limited to 'asm/lexer.c')
-rw-r--r-- | asm/lexer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/lexer.c b/asm/lexer.c index 8b0a061..49756f5 100644 --- a/asm/lexer.c +++ b/asm/lexer.c @@ -143,7 +143,7 @@ char uppercase(char c) bool is_symbol(char c) { return isalpha(c) || isdigit(c) || c == '-' || c == '_' || c == '.' || - c == ':'; + c == ':' || c == '(' || c == ')' || c == '%' || c == '$'; } bool is_valid_hex_char(char c) |