From 20d6be52405130930fde9ca5bb5e95131ba4e659 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Thu, 14 Jan 2021 14:03:32 -0800 Subject: 7520 --- html/baremetal/403unicode.mu.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'html/baremetal/403unicode.mu.html') diff --git a/html/baremetal/403unicode.mu.html b/html/baremetal/403unicode.mu.html index b1118a7c..1b70148c 100644 --- a/html/baremetal/403unicode.mu.html +++ b/html/baremetal/403unicode.mu.html @@ -155,7 +155,7 @@ if ('onhashchange' in window) { 97 break-if-= 98 return 0xffffffff 99 } -100 var c/eax: byte <- read-byte in +100 var c/eax: byte <- read-byte in 101 var num-trailers/ecx: int <- copy 0 102 $read-grapheme:compute-length: { 103 # single byte: just return it @@ -201,7 +201,7 @@ if ('onhashchange' in window) { 143 { 144 compare num-trailers, 0 145 break-if-<= -146 var tmp/eax: byte <- read-byte in +146 var tmp/eax: byte <- read-byte in 147 var tmp2/eax: int <- copy tmp 148 tmp2 <- shift-left-bytes tmp2, num-byte-shifts 149 result <- or tmp2 @@ -234,19 +234,19 @@ if ('onhashchange' in window) { 176 fn write-grapheme out: (addr stream byte), g: grapheme { 177 $write-grapheme:body: { 178 var c/eax: int <- copy g -179 append-byte out, c # first byte is always written +179 append-byte out, c # first byte is always written 180 c <- shift-right 8 181 compare c, 0 182 break-if-= $write-grapheme:body -183 append-byte out, c +183 append-byte out, c 184 c <- shift-right 8 185 compare c, 0 186 break-if-= $write-grapheme:body -187 append-byte out, c +187 append-byte out, c 188 c <- shift-right 8 189 compare c, 0 190 break-if-= $write-grapheme:body -191 append-byte out, c +191 append-byte out, c 192 } 193 } -- cgit 1.4.1-2-gfad0