/* Linker script for ClaudeOS user-mode flat binary. * Applications are loaded at 0x08048000 (USER_CODE_START). * This produces a flat binary (no ELF headers). */ ENTRY(_start) SECTIONS { . = 0x08048000; .text : { *(.text) } .rodata : { *(.rodata*) } .data : { *(.data) } .bss : { *(.bss) } }