Interrupt handling/cpu exceptions

This commit is contained in:
2025-12-21 11:55:49 +01:00
parent 84c600b903
commit c3123192d8
9 changed files with 324 additions and 4 deletions

View File

@@ -14,5 +14,7 @@ void bootmain(void) {
*a = 6969;
DEBUG("a=%p, *a=%d\n", a, *a);
*(volatile int *)0 = 123;
for (;;);
}