From 6f37250dd9d81c812fb5eddd747d237d94fff9b2 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 24 Oct 2018 23:05:58 -0700 Subject: 4722 --- html/subx/apps/crenshaw2-1.subx.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'html/subx/apps') diff --git a/html/subx/apps/crenshaw2-1.subx.html b/html/subx/apps/crenshaw2-1.subx.html index 1ff68646..5bd1da84 100644 --- a/html/subx/apps/crenshaw2-1.subx.html +++ b/html/subx/apps/crenshaw2-1.subx.html @@ -106,36 +106,36 @@ if ('onhashchange' in window) { 50 51 # print out "Error: #{s} expected\n" to stderr 52 error: # s : (address array byte) -> <void> -53 # _write(2/stderr, "Error: ") +53 # write(2/stderr, "Error: ") 54 # push args 55 68/push "Error: "/imm32 56 68/push 2/imm32/stderr 57 # call -58 e8/call _write/disp32 +58 e8/call write/disp32 59 # discard arg 60 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP -61 # _write(2/stderr, s) +61 # write(2/stderr, s) 62 # push args 63 ff 6/subop/push 1/mod/*+disp8 4/rm32/sib 4/base/ESP 4/index/none . . 4/disp8 . # push *(ESP+4) 64 68/push 2/imm32/stderr 65 # call -66 e8/call _write/disp32 +66 e8/call write/disp32 67 # discard arg 68 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP -69 # _write(2/stderr, " expected") +69 # write(2/stderr, " expected") 70 # push args 71 68/push " expected"/imm32 72 68/push 2/imm32/stderr 73 # call -74 e8/call _write/disp32 +74 e8/call write/disp32 75 # discard arg 76 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP -77 # _write(2/stderr, "\n") +77 # write(2/stderr, "\n") 78 # push args 79 68/push Newline/imm32 80 68/push 2/imm32/stderr 81 # call -82 e8/call _write/disp32 +82 e8/call write/disp32 83 # discard arg 84 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP 85 # end -- cgit 1.4.1-2-gfad0