Fix data word size

This commit is contained in:
2026-03-14 14:50:40 +00:00
parent 902404cb10
commit cc51b2d7be

2
asm.js
View File

@@ -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;