mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-16 20:22:26 +00:00
Implement first basic interrupt handler
This commit is contained in:
14
link.ld
14
link.ld
@@ -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 = .;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user