about summary refs log tree commit diff stats
path: root/052kernel-string-equal.subx
diff options
context:
space:
mode:
Diffstat (limited to '052kernel-string-equal.subx')
-rw-r--r--052kernel-string-equal.subx8
1 files changed, 4 insertions, 4 deletions
diff --git a/052kernel-string-equal.subx b/052kernel-string-equal.subx
index 94953e59..248b08e4 100644
--- a/052kernel-string-equal.subx
+++ b/052kernel-string-equal.subx
@@ -78,17 +78,17 @@ kernel-string-equal?:  # s : (addr kernel-string), benchmark : (addr array byte)
 $kernel-string-equal?:loop:
     # if (i >= n) break
     39/compare                      3/mod/direct    1/rm32/ecx    .           .             .           2/r32/edx   .               .                 # compare ecx with edx
-    7d/jump-if-greater-or-equal  $kernel-string-equal?:break/disp8
+    7d/jump-if->=  $kernel-string-equal?:break/disp8
     # c1 = *s1
     8a/copy-byte                    0/mod/indirect  7/rm32/edi    .           .             .           0/r32/AL    .               .                 # copy byte at *edi to AL
     # c2 = *s2
     8a/copy-byte                    0/mod/indirect  6/rm32/esi    .           .             .           3/r32/BL    .               .                 # copy byte at *esi to BL
     # if (c1 == 0) return false
     3d/compare-eax-and  0/imm32
-    74/jump-if-equal  $kernel-string-equal?:false/disp8
+    74/jump-if-=  $kernel-string-equal?:false/disp8
     # if (c1 != c2) return false
     39/compare                      3/mod/direct    0/rm32/eax    .           .             .           3/r32/ebx   .               .                 # compare eax and ebx
-    75/jump-if-not-equal  $kernel-string-equal?:false/disp8
+    75/jump-if-!=  $kernel-string-equal?:false/disp8
     # ++i
     41/increment-ecx
     # ++s1
@@ -100,7 +100,7 @@ $kernel-string-equal?:break:
     # return *s1 == 0
     8a/copy-byte                    0/mod/indirect  7/rm32/edi    .           .             .           0/r32/AL    .               .                 # copy byte at *edi to AL
     3d/compare-eax-and  0/imm32
-    75/jump-if-not-equal  $kernel-string-equal?:false/disp8
+    75/jump-if-!=  $kernel-string-equal?:false/disp8
 $kernel-string-equal?:true:
     b8/copy-to-eax  1/imm32
     eb/jump  $kernel-string-equal?:end/disp8