Fix syscall execution

This commit is contained in:
momo5502
2025-03-29 11:31:30 +01:00
parent 2a74303cdc
commit b215699360

View File

@@ -68,6 +68,8 @@ impl IcicleEmulator {
for (_key, func) in &self.syscall_hooks {
func();
}
self.vm.cpu.write_pc(self.vm.cpu.read_pc() + 2);
}
}