From cc51b2d7beb917b2419ef312b61709fe6ee77bf8 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Sat, 14 Mar 2026 14:50:40 +0000 Subject: [PATCH] Fix data word size --- asm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asm.js b/asm.js index 0240a37..d04a423 100644 --- a/asm.js +++ b/asm.js @@ -497,7 +497,7 @@ class Parser { this.state = State.TOP; return; } - const action = { type: Action.DATA, size: 2 }; + const action = { type: Action.DATA, size: 4 }; const value = this.integer(token); if (value == null) { action.symbol = token;