From 901ae474300d70bcc00e7e0b420ca87c8cbf6f55 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sun, 30 Dec 2018 20:24:37 -0800 Subject: 4899 Bug in my linkify tool introduced in commit 4891. --- html/subx/055trace.subx.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'html/subx/055trace.subx.html') diff --git a/html/subx/055trace.subx.html b/html/subx/055trace.subx.html index 7e71858c..fc55d888 100644 --- a/html/subx/055trace.subx.html +++ b/html/subx/055trace.subx.html @@ -84,12 +84,12 @@ if ('onhashchange' in window) { 22 == data 23 24 # We'll save the address of the trace segment here. - 25 Trace-stream: + 25 Trace-stream: 26 00 00 00 00 27 28 # Fake trace-stream for tests. 29 # Also illustrates the layout of the real trace-stream (segment). - 30 _test-trace-stream: + 30 _test-trace-stream: 31 # current write index 32 00 00 00 00 33 # current read index @@ -114,7 +114,7 @@ if ('onhashchange' in window) { 52 53 # Allocate a new segment for the trace stream, initialize its length, and save its address to Trace-stream. 54 # The Trace-stream segment will consist of variable-length lines separated by newlines (0x0a) - 55 initialize-trace-stream: + 55 initialize-trace-stream: 56 # EAX = new-segment(0x1000) 57 # . . push args 58 68/push 0x1000/imm32/N @@ -130,7 +130,7 @@ if ('onhashchange' in window) { 68 69 # Append a string to the given trace stream. 70 # Silently give up if it's already full. Or truncate the string if there isn't enough room. - 71 trace: # t : (address trace-stream), line : string + 71 trace: # t : (address trace-stream), line : string 72 # . prolog 73 55/push-EBP 74 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP @@ -197,7 +197,7 @@ if ('onhashchange' in window) { 135 5d/pop-to-EBP 136 c3/return 137 -138 clear-trace-stream: # t : (address trace-stream) +138 clear-trace-stream: # t : (address trace-stream) 139 # . prolog 140 55/push-EBP 141 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP @@ -237,7 +237,7 @@ if ('onhashchange' in window) { 175 176 # - tests 177 -178 test-trace-single: +178 test-trace-single: 179 # clear-trace-stream(_test-trace-stream) 180 # . . push args 181 68/push _test-trace-stream/imm32 @@ -267,7 +267,7 @@ if ('onhashchange' in window) { 205 # end 206 c3/return 207 -208 test-trace-appends: +208 test-trace-appends: 209 # clear-trace-stream(_test-trace-stream) 210 # . . push args 211 68/push _test-trace-stream/imm32 @@ -305,7 +305,7 @@ if ('onhashchange' in window) { 243 # end 244 c3/return 245 -246 test-trace-empty-line: +246 test-trace-empty-line: 247 # clear-trace-stream(_test-trace-stream) 248 # . . push args 249 68/push _test-trace-stream/imm32 @@ -338,7 +338,7 @@ if ('onhashchange' in window) { 276 # - helpers 277 278 # 3-argument variant of _append -279 _append-3: # out : address, outend : address, s : (array byte) -> num_bytes_appended/EAX +279 _append-3: # out : address, outend : address, s : (array byte) -> num_bytes_appended/EAX 280 # . prolog 281 55/push-EBP 282 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP @@ -370,7 +370,7 @@ if ('onhashchange' in window) { 308 c3/return 309 310 # 4-argument variant of _append -311 _append-4: # out : address, outend : address, in : address, inend : address -> num_bytes_appended/EAX +311 _append-4: # out : address, outend : address, in : address, inend : address -> num_bytes_appended/EAX 312 # . prolog 313 55/push-EBP 314 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP -- cgit 1.4.1-2-gfad0