ive/give/examples/grid/entry.ld

11 lines
128 B
Plaintext
Raw Permalink Normal View History

2023-08-07 21:14:18 +00:00
ENTRY(_start);
SECTIONS
{
. = 0x80000000;
.text : { *(.text .text.*) }
. = 0x0;
.data : { *(.data) }
.bss : { *(.bss) }
}