rename panic to interrupts to better reflect it's future role

This commit is contained in:
Liam Kerr 2026-02-09 19:33:11 +00:00
parent 16124277ee
commit b37f890266
5 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
#include <stddef.h>
#include <drivers/uart.h>
#include <syscon/syscon.h>
#include <kernel/panic.h>
#include <kernel/interrupts.h>
#include <kernel/memory.h>
void kmain()

View file

@ -2,7 +2,7 @@
#include <stddef.h>
#include "drivers/uart.h"
#include "memory.h"
#include "panic.h"
#include "interrupts.h"
HeapHeader *heap_free_list;
extern uint8_t _heap_start[]; // named in the linker script