Fix data word size
This commit is contained in:
2
asm.js
2
asm.js
@@ -497,7 +497,7 @@ class Parser {
|
|||||||
this.state = State.TOP;
|
this.state = State.TOP;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const action = { type: Action.DATA, size: 2 };
|
const action = { type: Action.DATA, size: 4 };
|
||||||
const value = this.integer(token);
|
const value = this.integer(token);
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
action.symbol = token;
|
action.symbol = token;
|
||||||
|
|||||||
Reference in New Issue
Block a user