about summary refs log tree commit diff stats
path: root/apps/ex10.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-27 00:36:44 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-27 00:36:44 -0800
commit71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990 (patch)
tree56307b5145be44b2239d3c782234309ed714f1b6 /apps/ex10.subx
parent1a65c3af0f797892f5981f8ebd33c275c1ef06b0 (diff)
downloadmu-71eb22a5bf94f5fa0a3c95212450e3c6a1a6a990.tar.gz
5924
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