[VM] Implement arg_pushr, b, w, and s correctly. Remove arg_pusha and o because they are tricky and low priority.

This commit is contained in:
jtuu 2019-10-02 16:45:40 +03:00
parent 98acdbf7f9
commit 806ab0ddd5

View File

@ -1,4 +1,4 @@
import { Instruction, InstructionSegment, Segment, SegmentType, Arg } from "../instructions";
import { Instruction, InstructionSegment, Segment, SegmentType, Arg, new_arg } from "../instructions";
import {
OP_CALL,
OP_CLEAR,
@ -138,12 +138,18 @@ export class VirtualMachine {
this.jump_to_label(exec, inst.args[0].value);
break;
case OP_ARG_PUSHR:
// deref given register ref
this.push_arg_stack(exec, new_arg(
this.get_sint(inst.args[0].value),
REGISTER_SIZE,
inst.args[0].asm
));
break;
case OP_ARG_PUSHL:
case OP_ARG_PUSHB:
case OP_ARG_PUSHW:
case OP_ARG_PUSHA:
case OP_ARG_PUSHO:
case OP_ARG_PUSHS:
// push arg as-is
this.push_arg_stack(exec, inst.args[0].value);
break;
default: