diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-10-03 20:47:07 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-10-03 20:47:07 -0700 |
commit | 52387f21076326c8a1ac65e6d784b35c3759d23d (patch) | |
tree | 787962bdf56c0ec3a82e07e7d1e1cd6fe3332335 | |
parent | d11372f6d02d30e2c47dd843be5394064f9e589f (diff) | |
download | mu-52387f21076326c8a1ac65e6d784b35c3759d23d.tar.gz |
4659
-rw-r--r-- | subx/054string_equal.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/subx/054string_equal.subx b/subx/054string_equal.subx index ade18a07..78ceb631 100644 --- a/subx/054string_equal.subx +++ b/subx/054string_equal.subx @@ -113,7 +113,7 @@ test_compare_empty_with_non_empty_string: # also checks length-mismatch code pa 68/push "Abc"/imm32 68/push ""/imm32 # call - e8/call kernel_string_equal/disp32 + e8/call string_equal/disp32 # discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP # call check_ints_equal(EAX, 0, msg) @@ -128,7 +128,7 @@ test_compare_empty_with_non_empty_string: # also checks length-mismatch code pa c3/return test_compare_equal_strings: - # EAX = kernel_string_equal("Abc", "Abc") + # EAX = string_equal("Abc", "Abc") # push args 68/push "Abc"/imm32 68/push "Abc"/imm32 @@ -148,7 +148,7 @@ test_compare_equal_strings: c3/return test_compare_inequal_strings_equal_lengths: - # EAX = kernel_string_equal("Abc", "Adc") + # EAX = string_equal("Abc", "Adc") # push args 68/push "Adc"/imm32 68/push "Abc"/imm32 |