From 52daf0722f7f4ad9d3f29e3cbbbaddde066f49f3 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 20 May 2019 01:44:06 -0700 Subject: 5211 Update syntax-highlighted renderings after a _long_ time. --- html/subx/apps/hex.subx.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'html/subx/apps/hex.subx.html') diff --git a/html/subx/apps/hex.subx.html b/html/subx/apps/hex.subx.html index a7c0c903..53376ea7 100644 --- a/html/subx/apps/hex.subx.html +++ b/html/subx/apps/hex.subx.html @@ -138,7 +138,7 @@ if ('onhashchange' in window) { 75 # while true 76 # EAX = convert-next-octet(in, err, ed) 77 # if (EAX == Eof) break - 78 # write-byte(out, AL) + 78 # write-byte-buffered(out, AL) 79 # flush(out) 80 # 81 # . prolog @@ -159,12 +159,12 @@ if ('onhashchange' in window) { 96 # if (EAX == Eof) break 97 3d/compare-EAX-and 0xffffffff/imm32/Eof 98 74/jump-if-equal $convert:loop-end/disp8 - 99 # write-byte(out, AL) + 99 # write-byte-buffered(out, AL) 100 # . . push args 101 50/push-EAX 102 ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 0xc/disp8 . # push *(EBP+12) 103 # . . call - 104 e8/call write-byte/disp32 + 104 e8/call write-byte-buffered/disp32 105 # . . discard args 106 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 8/imm32 # add to ESP 107 # loop @@ -552,7 +552,7 @@ if ('onhashchange' in window) { 489 scan-next-byte: # in : (address buffered-file), err : (address buffered-file), ed : (address exit-descriptor) -> byte-or-Eof/EAX 490 # pseudocode: 491 # while true - 492 # EAX = read-byte(in) + 492 # EAX = read-byte-buffered(in) 493 # if (EAX == Eof) return EAX 494 # if (is-hex-digit?(EAX)) return EAX 495 # if (EAX == ' ' or '\t' or '\n') continue @@ -564,11 +564,11 @@ if ('onhashchange' in window) { 501 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP 502 # . save registers 503 $scan-next-byte:loop: - 504 # EAX = read-byte(in) + 504 # EAX = read-byte-buffered(in) 505 # . . push args 506 ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) 507 # . . call - 508 e8/call read-byte/disp32 + 508 e8/call read-byte-buffered/disp32 509 # . . discard args 510 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 4/imm32 # add to ESP 511 # if (EAX == Eof) return EAX @@ -1452,7 +1452,7 @@ if ('onhashchange' in window) { 1389 # pseudocode: 1390 # push EAX 1391 # while true -1392 # EAX = read-byte(in) +1392 # EAX = read-byte-buffered(in) 1393 # if (EAX == Eof) break 1394 # if (EAX == 0x0a) break 1395 # pop EAX @@ -1462,11 +1462,11 @@ if ('onhashchange' in window) { 1399 # . save registers 1400 50/push-EAX 1401 $skip-until-newline:loop: -1402 # . EAX = read-byte(in) +1402 # . EAX = read-byte-buffered(in) 1403 # . . push args 1404 ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) 1405 # . . call -1406 e8/call read-byte/disp32 +1406 e8/call read-byte-buffered/disp32 1407 # . . discard args 1408 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 4/imm32 # add to ESP 1409 # . if (EAX == Eof) break -- cgit 1.4.1-2-gfad0