diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-07-20 07:30:59 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-07-20 08:43:25 -0700 |
commit | 13ef425825cef5fa30f7eb68688b6d114ecbe554 (patch) | |
tree | a9853e61dd9fa39a4cf8f8c1ff5e79171e5ce9c3 /linux/apps | |
parent | 5f254d0d02d8d6d61ca57ef4188110f11032a930 (diff) | |
download | mu-13ef425825cef5fa30f7eb68688b6d114ecbe554.tar.gz |
.
Diffstat (limited to 'linux/apps')
-rw-r--r-- | linux/apps/ex11.subx | 2 | ||||
-rw-r--r-- | linux/apps/ex5.subx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/linux/apps/ex11.subx b/linux/apps/ex11.subx index 434d824d..67eb790f 100644 --- a/linux/apps/ex11.subx +++ b/linux/apps/ex11.subx @@ -316,7 +316,7 @@ write-stderr: # s: (addr array byte) -> <void> 51/push-ecx 52/push-edx 53/push-ebx - # syscall(write, 2/stderr, (data) s+4, (size) *s) + # syscall_write(2/stderr, (data) s+4, (size) *s) # . . fd = 2 (stderr) bb/copy-to-ebx 2/imm32 # . . x = s+4 diff --git a/linux/apps/ex5.subx b/linux/apps/ex5.subx index d7bab0ce..f9bbc661 100644 --- a/linux/apps/ex5.subx +++ b/linux/apps/ex5.subx @@ -24,7 +24,7 @@ Entry: # . syscall e8/call syscall_read/disp32 - # syscall(write, stdout, x, 1) + # syscall_write(stdout, x, 1) # . fd = 1 (stdout) bb/copy-to-ebx 1/imm32 # . data = x (location to read from) |