From f0e146fc7b947bae526657d8c858a95319abf204 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sat, 1 May 2021 23:52:28 -0700 Subject: . --- html/shell/trace.mu.html | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'html/shell/trace.mu.html') diff --git a/html/shell/trace.mu.html b/html/shell/trace.mu.html index f2d2336e..8a74c7a4 100644 --- a/html/shell/trace.mu.html +++ b/html/shell/trace.mu.html @@ -167,7 +167,7 @@ if ('onhashchange' in window) { 108 write message, " - find a smaller sub-computation to test,\n" 109 write message, " - allocate more space to the trace in initialize-sandbox\n" 110 write message, " (shell/sandbox.mu), or\n" - 111 write message, " - move the computation to 'main' and run it using ctrl-s" + 111 write message, " - move the computation to 'main' and run it using ctrl-s" 112 initialize-trace-line 0/depth, "error", message, dest 113 increment *index-addr 114 return @@ -361,7 +361,7 @@ if ('onhashchange' in window) { 302 var curr/ebx: (addr trace-line) <- index trace, offset 303 var curr-label-ah/eax: (addr handle array byte) <- get curr, label 304 var curr-label/eax: (addr array byte) <- lookup *curr-label-ah - 305 y <- render-trace-line 0/screen, curr, 0, y, 0x80/width, 0x30/height, 7/fg, 0/bg + 305 y <- render-trace-line 0/screen, curr, 0, y, 0x80/width, 0x30/height, 7/fg, 0xc5/bg=blue-bg 306 } 307 i <- increment 308 loop @@ -406,7 +406,7 @@ if ('onhashchange' in window) { 347 var curr/ebx: (addr trace-line) <- index trace, offset 348 var curr-label-ah/eax: (addr handle array byte) <- get curr, label 349 var curr-label/eax: (addr array byte) <- lookup *curr-label-ah - 350 var bg/edi: int <- copy 0/black + 350 var bg/edi: int <- copy 0xc5/bg=blue-bg 351 compare show-cursor?, 0/false 352 { 353 break-if-= @@ -431,7 +431,7 @@ if ('onhashchange' in window) { 372 { 373 compare display?, 0/false 374 break-if-= - 375 y <- render-trace-line screen, curr, xmin, y, xmax, ymax, 9/fg=blue, bg + 375 y <- render-trace-line screen, curr, xmin, y, xmax, ymax, 0x38/fg=trace, bg 376 copy-to already-hiding-lines?, 0/false 377 break $render-trace:iter 378 } @@ -565,7 +565,7 @@ if ('onhashchange' in window) { 506 { 507 compare display?, 0/false 508 break-if-= - 509 var dummy/ecx: int <- render-trace-line screen, cursor-line, xmin, y, xmax, ymax, 9/fg=blue, 7/cursor-line-bg + 509 var dummy/ecx: int <- render-trace-line screen, cursor-line, xmin, y, xmax, ymax, 0x38/fg=trace, 7/cursor-line-bg 510 return 511 } 512 var dummy1/eax: int <- copy 0 @@ -744,20 +744,20 @@ if ('onhashchange' in window) { 685 var y/ecx: int <- copy height 686 y <- decrement 687 set-cursor-position screen, 0/x, y - 688 draw-text-rightward-from-cursor screen, " ctrl-r ", width, 0/fg, 7/bg=grey - 689 draw-text-rightward-from-cursor screen, " run main ", width, 7/fg, 0/bg - 690 draw-text-rightward-from-cursor screen, " ctrl-s ", width, 0/fg, 7/bg=grey - 691 draw-text-rightward-from-cursor screen, " run sandbox ", width, 7/fg, 0/bg - 692 draw-text-rightward-from-cursor screen, " tab ", width, 0/fg, 0x18/bg=keyboard - 693 draw-text-rightward-from-cursor screen, " to keyboard ", width, 7/fg, 0/bg - 694 draw-text-rightward-from-cursor screen, " j ", width, 0/fg, 7/bg=grey - 695 draw-text-rightward-from-cursor screen, " down ", width, 7/fg, 0/bg - 696 draw-text-rightward-from-cursor screen, " k ", width, 0/fg, 7/bg=grey - 697 draw-text-rightward-from-cursor screen, " up ", width, 7/fg, 0/bg - 698 draw-text-rightward-from-cursor screen, " enter ", width, 0/fg, 7/bg=grey - 699 draw-text-rightward-from-cursor screen, " expand ", width, 7/fg, 0/bg - 700 draw-text-rightward-from-cursor screen, " backspace ", width, 0/fg, 7/bg=grey - 701 draw-text-rightward-from-cursor screen, " collapse ", width, 7/fg, 0/bg + 688 draw-text-rightward-from-cursor screen, " ctrl-r ", width, 0/fg, 0x5c/bg=black + 689 draw-text-rightward-from-cursor screen, " run main ", width, 7/fg, 0xc5/bg=blue-bg + 690 draw-text-rightward-from-cursor screen, " ctrl-s ", width, 0/fg, 0x5c/bg=black + 691 draw-text-rightward-from-cursor screen, " run sandbox ", width, 7/fg, 0xc5/bg=blue-bg + 692 draw-text-rightward-from-cursor screen, " ctrl-m ", width, 0/fg, 3/bg=keyboard + 693 draw-text-rightward-from-cursor screen, " to keyboard ", width, 7/fg, 0xc5/bg=blue-bg + 694 draw-text-rightward-from-cursor screen, " j ", width, 0/fg, 0x5c/bg=black + 695 draw-text-rightward-from-cursor screen, " down ", width, 7/fg, 0xc5/bg=blue-bg + 696 draw-text-rightward-from-cursor screen, " k ", width, 0/fg, 0x5c/bg=black + 697 draw-text-rightward-from-cursor screen, " up ", width, 7/fg, 0xc5/bg=blue-bg + 698 draw-text-rightward-from-cursor screen, " enter ", width, 0/fg, 0x5c/bg=black + 699 draw-text-rightward-from-cursor screen, " expand ", width, 7/fg, 0xc5/bg=blue-bg + 700 draw-text-rightward-from-cursor screen, " backspace ", width, 0/fg, 0x5c/bg=black + 701 draw-text-rightward-from-cursor screen, " collapse ", width, 7/fg, 0xc5/bg=blue-bg 702 } 703 704 fn edit-trace _self: (addr trace), key: grapheme { -- cgit 1.4.1-2-gfad0