mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-06 08:08:28 +08:00
[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:
parent
98acdbf7f9
commit
806ab0ddd5
@ -1,4 +1,4 @@
|
|||||||
import { Instruction, InstructionSegment, Segment, SegmentType, Arg } from "../instructions";
|
import { Instruction, InstructionSegment, Segment, SegmentType, Arg, new_arg } from "../instructions";
|
||||||
import {
|
import {
|
||||||
OP_CALL,
|
OP_CALL,
|
||||||
OP_CLEAR,
|
OP_CLEAR,
|
||||||
@ -138,12 +138,18 @@ export class VirtualMachine {
|
|||||||
this.jump_to_label(exec, inst.args[0].value);
|
this.jump_to_label(exec, inst.args[0].value);
|
||||||
break;
|
break;
|
||||||
case OP_ARG_PUSHR:
|
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_PUSHL:
|
||||||
case OP_ARG_PUSHB:
|
case OP_ARG_PUSHB:
|
||||||
case OP_ARG_PUSHW:
|
case OP_ARG_PUSHW:
|
||||||
case OP_ARG_PUSHA:
|
|
||||||
case OP_ARG_PUSHO:
|
|
||||||
case OP_ARG_PUSHS:
|
case OP_ARG_PUSHS:
|
||||||
|
// push arg as-is
|
||||||
this.push_arg_stack(exec, inst.args[0].value);
|
this.push_arg_stack(exec, inst.args[0].value);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user