Cleanup Makefile and linker.ld.

This commit is contained in:
Andy Nguyen
2026-05-13 07:31:01 +02:00
parent 81e2b00059
commit 6a95a5ee82
4 changed files with 11 additions and 21 deletions

View File

@@ -4,15 +4,15 @@ ENTRY(main)
SECTIONS
{
. = 0x1000; /* 0x1000 to avoid warnings from linker */
.text :
/* Place our custom header first */
.shell_code :
{
*(.entry_point)
*(.text)
*(.text.*)
*(.data)
*(.data.*)
*(.data*)
*(.rodata*)
*(.bss)
*(.bss.*)
}
}
}