Assemble kernel on the client #1

Merged
cdo merged 72 commits from client-side-assembler into main 2026-03-18 15:21:33 +00:00
Showing only changes of commit 5e39024f6d - Show all commits

2
asm.js
View File

@@ -1169,7 +1169,7 @@ export class Assembler {
const bytes = [];
while (true) {
const b = x & 0x7f;
x >>= 7;
x >>>= 7;
if (x == 0) {
bytes.push(b);
return bytes;