Multiple changes:

- Makefile: fix linker script path
- irq.c: `irqN()` stubs
- irq.h: fix missing header
- isr.h/isr.c extern `interrupt_handlers`
- utils.c: remove duplicate `memcmp`
This commit is contained in:
vmttmv
2025-11-19 03:32:06 +02:00
parent 3036ee3dfd
commit 8743fa9e24
8 changed files with 28 additions and 16 deletions

View File

@@ -1,6 +1,8 @@
#ifndef IRQ_H
#define IRQ_H
#include "types.h"
void irq_remap(void);
void irq_install(void);
void irq_handler(uint32_t int_num);