_start = 0;
OUTPUT_FORMAT("binary")
ENTRY(_start)
SECTIONS
{
. =_start;
text_section = .;
.text : { *(.text)}
text_sz = . - text_section;
data_section = .;
.data : { *(.data)}
data_sz = . - data_section;
bss_section = .;
.bss : { *(.bss)
}
bss_sz = . - bss_section;
image_end = .;
image_size = . - _start;
}
