Print some info on exceptions.

This commit is contained in:
2024-01-19 00:06:00 +01:00
parent 9f1f1e80f2
commit 355b1641bd
6 changed files with 477 additions and 191 deletions

View File

@@ -240,6 +240,10 @@ void kernel_main()
event.down ? "true" : "false",
event.repeat ? "true" : "false"
);
if (event.down && event.scancode == ps2::Scancode::ESCAPE)
{
int x = 1 / 0;
}
}
main();