about summary refs log tree commit diff stats
path: root/067parse-hex.subx
diff options
context:
space:
mode:
Diffstat (limited to '067parse-hex.subx')
-rw-r--r--067parse-hex.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/067parse-hex.subx b/067parse-hex.subx
index 0695ebeb..0843c52f 100644
--- a/067parse-hex.subx
+++ b/067parse-hex.subx
@@ -657,8 +657,8 @@ is-hex-digit?:  # c : byte -> eax : boolean
     # return true if c >= 'a'
     81          7/subop/compare     3/mod/direct    1/rm32/ecx    .           .             .           .           .               0x61/imm32        # compare ecx
     7d/jump-if-greater-or-equal  $is-hex-digit?:true/disp8
-$is-hex-digit?:false:
     # otherwise return false
+$is-hex-digit?:false:
     b8/copy-to-eax  0/imm32/false
     eb/jump $is-hex-digit?:end/disp8
 $is-hex-digit?:true: