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 401e8e1fad - Show all commits

4
asm.js
View File

@@ -1136,10 +1136,10 @@ export class Assembler {
}
le(value, count) {
let bytes = []
const bytes = []
while (value != 0) {
bytes.push(value & 0xff);
value >>= 8;
value >>>= 8;
}
if (count != undefined) {
while (bytes.length < count)