From 3ff2fe607c2cb5690d201d3b83ddcc957e949b7a Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Tue, 9 Nov 2021 09:23:31 -0800 Subject: . --- html/browse-slack/main.mu.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'html/browse-slack/main.mu.html') diff --git a/html/browse-slack/main.mu.html b/html/browse-slack/main.mu.html index 649d0f1f..1fc96174 100644 --- a/html/browse-slack/main.mu.html +++ b/html/browse-slack/main.mu.html @@ -122,11 +122,11 @@ if ('onhashchange' in window) { 58 var sector-count/eax: int <- copy 0x400 # test_data 59 #? var sector-count/eax: int <- copy 0x20000 # largest size tested; slow 60 set-cursor-position 0/screen, 0x20/x 0/y # aborts clobber the screen starting x=0 - 61 draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, "loading ", 3/fg 0/bg - 62 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen screen, sector-count, 3/fg 0/bg - 63 draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, " sectors from data disk..", 3/fg 0/bg + 61 draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, "loading ", 3/fg 0/bg + 62 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen screen, sector-count, 3/fg 0/bg + 63 draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, " sectors from data disk..", 3/fg 0/bg 64 load-sectors data-disk, 0/lba, sector-count, s - 65 draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, "done", 3/fg 0/bg + 65 draw-text-wrapping-right-then-down-from-cursor-over-full-screen screen, "done", 3/fg 0/bg 66 # parse global data structures out of the stream 67 var users-h: (handle array user) 68 var users-ah/eax: (addr handle array user) <- address users-h @@ -177,11 +177,11 @@ if ('onhashchange' in window) { 113 compare c, 0 114 break-if-= 115 set-cursor-position 0/screen, 0x20/x 1/y -116 draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, "parsed " 3/fg 0/bg -117 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, user-idx, 3/fg 0/bg -118 draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, " users, " 3/fg 0/bg -119 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, item-idx, 3/fg 0/bg -120 draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, " posts/comments" 3/fg 0/bg +116 draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, "parsed " 3/fg 0/bg +117 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, user-idx, 3/fg 0/bg +118 draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, " users, " 3/fg 0/bg +119 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, item-idx, 3/fg 0/bg +120 draw-text-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, " posts/comments" 3/fg 0/bg 121 clear-stream record 122 parse-record in, record 123 var user?/eax: boolean <- user-record? record @@ -210,7 +210,7 @@ if ('onhashchange' in window) { 146 break-if-= 147 set-cursor-position 0/screen, 0x20 0x10 148 var c/eax: int <- copy paren -149 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen c, 5/fg 0/bg +149 draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen c, 5/fg 0/bg 150 abort "parse-record: (" 151 } 152 var paren-int/eax: int <- copy paren -- cgit 1.4.1-2-gfad0 e the previous revision' href='/akspecs/ranger/blame/ranger.py?h=v1.9.1&id=1c90e610de6591e8052a1056c775219b5e767002'>^
e52629c1 ^


08f08fb9 ^
d8084b41 ^

b3d031a9 ^

08f08fb9 ^
654af129 ^

d1a1173d ^
d8084b41 ^
cba63cf3 ^
e52629c1 ^
b3d031a9 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41