helper: report exit by guest

This commit is contained in:
fridtjof 2025-08-15 17:36:15 +02:00
parent 2b96aa2f41
commit ecdcafd570

View file

@ -19,6 +19,7 @@ void helper_raise_unimplemented_instruction(void) {
}
void helper_exit(CPUCR16CState *env) {
qemu_printf("Guest requested exit\n");
exit(env->r[0]);
}