Add polmon executable

This commit is contained in:
2025-09-24 00:51:56 +02:00
parent 3c90dd8b3d
commit bf16ae5646
5 changed files with 416 additions and 407 deletions

20
flat0600.ld Normal file
View File

@@ -0,0 +1,20 @@
SECTIONS {
. = 0x0600;
.text : {
KEEP(*(.init))
*(.text*)
}
.rodata : {
*(.rodata*)
}
.bss (NOLOAD) : {
* (.bss)
}
.data : {
*(.data)
}
}