mirror of
https://github.com/iceHtwoO/novaOS.git
synced 2026-04-17 04:32:27 +00:00
Add power management watchdog,
rework interrupts
This commit is contained in:
9
link.ld
9
link.ld
@@ -27,7 +27,7 @@ SECTIONS {
|
||||
KEEP(*(.vector_table))
|
||||
}
|
||||
|
||||
.heap 0x8000000 : ALIGN(16)
|
||||
.heap : ALIGN(16)
|
||||
{
|
||||
__heap_start = .;
|
||||
. += 0x10000; #10kB
|
||||
@@ -41,6 +41,13 @@ SECTIONS {
|
||||
__stack_end = .;
|
||||
}
|
||||
|
||||
.stack_el0 : ALIGN(16)
|
||||
{
|
||||
__stack_start_el0 = .;
|
||||
. += 0x10000; #10kB stack
|
||||
__stack_end_el0 = .;
|
||||
}
|
||||
|
||||
|
||||
_end = .;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user