Implement first basic interrupt handler

This commit is contained in:
2025-05-29 18:21:42 +02:00
parent 18233ec722
commit 20808a7992
16 changed files with 283 additions and 32 deletions

14
link.ld
View File

@@ -1,7 +1,7 @@
SECTIONS {
. = 0x80000;
.text : {
.text ALIGN(4) : {
KEEP(*(.text._start))
*(.text .text.*)
}
@@ -23,6 +23,18 @@ SECTIONS {
__bss_end = .;
}
.vector_table ALIGN(2048) : {
KEEP(*(.vector_table))
}
.stack 0x8008000 : ALIGN(16)
{
__stack_start = .;
.+=0x10000;
__stack_end = .;
}
_end = .;
}