about summary refs log tree commit diff stats
path: root/067parse-hex.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-11-28 01:01:37 -0800
committerKartik Agaram <vc@akkartik.com>2019-11-28 01:01:37 -0800
commit0546546c15ba47b5761eaf351d4a108d6bd676af (patch)
treeccc5ba981597ab2a1f9c0d2f9f616fc8a190da86 /067parse-hex.subx
parent3a7da4e735247daaafe0f715bd2de4fb21e44e3d (diff)
downloadmu-0546546c15ba47b5761eaf351d4a108d6bd676af.tar.gz
5770
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: