summaryrefslogtreecommitdiff
path: root/src/linker.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/linker.ld')
-rw-r--r--src/linker.ld13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/linker.ld b/src/linker.ld
index 9ea0171..2e208af 100644
--- a/src/linker.ld
+++ b/src/linker.ld
@@ -4,24 +4,29 @@ OUTPUT_FORMAT(binary)
SECTIONS {
. = 1M;
- .text :
+ .text : ALIGN(4096)
{
*(.text)
}
- .rodata :
+ .rodata : ALIGN(4096)
{
*(.rodata)
}
- .data :
+ .data : ALIGN(4096)
{
*(.data)
}
- .bss :
+ .bss : ALIGN(4096)
{
*(COMMON)
*(.bss)
}
+
+ .asm : ALIGN(4096)
+ {
+ *(.asm)
+ }
}