[VM] Reset state more thoroughly when halting and loading new object code.

This commit is contained in:
jtuu 2019-10-17 18:44:05 +03:00
parent 755e38c76a
commit da6cdc7d74

View File

@ -128,7 +128,8 @@ export class VirtualMachine {
*/ */
load_object_code(object_code: Segment[]): void { load_object_code(object_code: Segment[]): void {
this.halt(); this.halt();
this.clear_registers(); this.registers.zero();
this.string_arg_store.zero();
this.object_code = object_code; this.object_code = object_code;
this.label_to_seg_idx.clear(); this.label_to_seg_idx.clear();
let i = 0; let i = 0;
@ -559,6 +560,8 @@ export class VirtualMachine {
thread.dispose(); thread.dispose();
} }
this.window_msg_open = false;
this.thread = []; this.thread = [];
this.thread_idx = 0; this.thread_idx = 0;
} }
@ -769,10 +772,6 @@ export class VirtualMachine {
} }
} }
private clear_registers(): void {
this.registers.zero();
}
private get_register_address(reg: number): number { private get_register_address(reg: number): number {
return this.registers.address + reg * REGISTER_SIZE; return this.registers.address + reg * REGISTER_SIZE;
} }