mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
[VM] Allow last instruction to return an ExecutionResult other than Halted.
The next call to execute will then be a no-op and return Halted.
This commit is contained in:
parent
87cabac307
commit
b8db5d46fc
@ -236,6 +236,9 @@ export class VirtualMachine {
|
||||
*/
|
||||
execute(): ExecutionResult {
|
||||
let srcloc: AsmToken | undefined;
|
||||
|
||||
if (this.thread.length === 0) return ExecutionResult.Halted;
|
||||
|
||||
try {
|
||||
const exec = this.thread[this.thread_idx];
|
||||
const inst = this.get_next_instruction_from_thread(exec);
|
||||
@ -262,7 +265,6 @@ export class VirtualMachine {
|
||||
inst: Instruction,
|
||||
srcloc?: AsmToken,
|
||||
): ExecutionResult {
|
||||
if (this.thread.length === 0) return ExecutionResult.Halted;
|
||||
if (this.thread_idx >= this.thread.length) return ExecutionResult.WaitingVsync;
|
||||
|
||||
let result = ExecutionResult.Ok;
|
||||
@ -694,8 +696,6 @@ export class VirtualMachine {
|
||||
}
|
||||
}
|
||||
|
||||
if (this.thread.length === 0) return ExecutionResult.Halted;
|
||||
if (this.thread_idx >= this.thread.length) return ExecutionResult.WaitingVsync;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user