mirror of
https://github.com/drasko/codezero.git
synced 2026-01-27 02:03:14 +01:00
Dynamic generation of pager size
This commit is contained in:
@@ -19,8 +19,11 @@ SECTIONS
|
||||
|
||||
. = ALIGN(4K);
|
||||
.data : AT (ADDR(.data) - offset) { *(.data) }
|
||||
.bss : AT (ADDR(.bss) - offset) { *(.bss) }
|
||||
. += 0x1000;
|
||||
. = ALIGN(8);
|
||||
__stack = .;
|
||||
.bss : AT (ADDR(.bss) - offset)
|
||||
{
|
||||
*(.bss)
|
||||
. += 0x1000;
|
||||
. = ALIGN(8);
|
||||
__stack = .;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user