aboutsummaryrefslogtreecommitdiffstats
path: root/core/asm/lexer.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/asm/lexer.go')
-rw-r--r--core/asm/lexer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/asm/lexer.go b/core/asm/lexer.go
index 2770bd35f..d784e5d50 100644
--- a/core/asm/lexer.go
+++ b/core/asm/lexer.go
@@ -254,7 +254,7 @@ func lexInsideString(l *lexer) stateFn {
func lexNumber(l *lexer) stateFn {
acceptance := Numbers
- if l.accept("0") && l.accept("xX") {
+ if l.accept("0") || l.accept("xX") {
acceptance = HexadecimalNumbers
}
l.acceptRun(acceptance)