6502/vbcc/targets/vidcore-linux/vlink.cmd
2022-05-12 21:36:39 +09:30

13 lines
189 B
Batchfile
Executable File

PHDRS {
text PT_LOAD;
data PT_LOAD;
}
SECTIONS
{
.text : { *(.text) *(.barrier) *(.dtors) *(.ctors) *(.data) *(.bss)} :text
; .data : { } :data
; .bss : { }
}