mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-10-13 13:15:07 -07:00
mostly improvements to malloc
This commit is contained in:
@@ -14,4 +14,14 @@ SECTIONS {
|
||||
*(.bss*)
|
||||
*(COMMON)
|
||||
}
|
||||
|
||||
.stack (NOLOAD) : {
|
||||
. = ALIGN(4);
|
||||
. = . + 0x1000;
|
||||
}
|
||||
|
||||
.heap (NOLOAD) : {
|
||||
. = ALIGN(4);
|
||||
. = . + 0x10000;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user