mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Fixed jmp_on
This commit is contained in:
parent
d1ffb69d4d
commit
ab775f47de
@ -657,11 +657,11 @@ export class VirtualMachine {
|
|||||||
break;
|
break;
|
||||||
// conditional jumps
|
// conditional jumps
|
||||||
case OP_JMP_ON.code:
|
case OP_JMP_ON.code:
|
||||||
// all eq 1?
|
// all nonzero?
|
||||||
this.conditional_jump(
|
this.conditional_jump(
|
||||||
thread,
|
thread,
|
||||||
arg0,
|
arg0,
|
||||||
(a, b) => a === b,
|
(_, b) => b !== 0,
|
||||||
1,
|
1,
|
||||||
...rest(arg_vals).map(reg => this.get_register_signed(reg)),
|
...rest(arg_vals).map(reg => this.get_register_signed(reg)),
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user