about summary refs log tree commit diff stats
path: root/apps/ex10.subx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ex10.subx')
-rw-r--r--apps/ex10.subx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ex10.subx b/apps/ex10.subx
index a67ec6f7..7d821541 100644
--- a/apps/ex10.subx
+++ b/apps/ex10.subx
@@ -33,7 +33,7 @@ Entry:  # return argv-equal(argv[1], argv[2])
 
 # compare two null-terminated ascii strings
 # reason for the name: the only place we should have null-terminated ascii strings is from commandline args
-argv-equal:  # (s1, s2) : null-terminated ascii strings -> eax : boolean
+argv-equal:  # (s1, s2): null-terminated ascii strings -> eax: boolean
     # initialize s1 (ecx) and s2 (edx)
     8b/copy                         1/mod/*+disp8   4/rm32/sib    4/base/esp  4/index/none  .           1/r32/ecx   4/disp8         .                 # copy *(esp+4) to ecx
     8b/copy                         1/mod/*+disp8   4/rm32/sib    4/base/esp  4/index/none  .           2/r32/edx   8/disp8         .                 # copy *(esp+8) to edx