From b1635a5c8e25650a19999c246be321a0794eb58a Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Thu, 17 Oct 2019 22:03:35 -0700 Subject: 5701 --- html/071read-line.subx.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'html/071read-line.subx.html') diff --git a/html/071read-line.subx.html b/html/071read-line.subx.html index 05b328e0..556a1a56 100644 --- a/html/071read-line.subx.html +++ b/html/071read-line.subx.html @@ -66,7 +66,7 @@ if ('onhashchange' in window) { 6 # read bytes from 'f' until (and including) a newline and store them into 's' 7 # 's' fails to grow if and only if no data found 8 # just abort if 's' is too small - 9 read-line-buffered: # f : (address buffered-file), s : (address stream byte) -> <void> + 9 read-line-buffered: # f : (address buffered-file), s : (address stream byte) 10 # pseudocode: 11 # while true 12 # if (s->write >= s->length) abort @@ -77,7 +77,7 @@ if ('onhashchange' in window) { 17 # ++f->read 18 # ++s->write 19 # if (AL == '\n') break - 20 # . prolog + 20 # . prologue 21 55/push-ebp 22 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp 23 # . save registers @@ -148,7 +148,7 @@ if ('onhashchange' in window) { 88 5a/pop-to-edx 89 59/pop-to-ecx 90 58/pop-to-eax - 91 # . epilog + 91 # . epilogue 92 89/copy 3/mod/direct 4/rm32/esp . . . 5/r32/ebp . . # copy ebp to esp 93 5d/pop-to-ebp 94 c3/return @@ -280,7 +280,7 @@ if ('onhashchange' in window) { 220 # read bytes from 'f' until (and including) a newline and store them into 's' 221 # 's' fails to grow if and only if no data found 222 # just abort if 's' is too small -223 read-line: # f : (address stream), s : (address stream byte) -> <void> +223 read-line: # f : (address stream), s : (address stream byte) 224 # pseudocode: 225 # while true 226 # if (s->write >= s->length) abort @@ -290,7 +290,7 @@ if ('onhashchange' in window) { 230 # ++f->read 231 # ++s->write 232 # if (AL == '\n') break -233 # . prolog +233 # . prologue 234 55/push-ebp 235 89/copy 3/mod/direct 5/rm32/ebp . . . 4/r32/esp . . # copy esp to ebp 236 # . save registers @@ -337,7 +337,7 @@ if ('onhashchange' in window) { 277 5a/pop-to-edx 278 59/pop-to-ecx 279 58/pop-to-eax -280 # . epilog +280 # . epilogue 281 89/copy 3/mod/direct 4/rm32/esp . . . 5/r32/ebp . . # copy ebp to esp 282 5d/pop-to-ebp 283 c3/return -- cgit 1.4.1-2-gfad0