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 3ebb74c73c - Show all commits

2
asm.js
View File

@@ -316,7 +316,7 @@ class Parser {
if (opcode)
return { type: Action.APPEND, opcode };
const literal = this.integer(token);
if (literal)
if (literal != null)
return { type: Action.APPEND, literal };
return { type: Action.SYMBOL, symbol: token };