4 /* BIOS loads the boot code at 0000:7c00 */
9 /* second stage boot loader */
12 /* pad the boot loader to the next sector boundary */
15 _boot2_size = SIZEOF(.boot2);
17 /* main program will be loaded at 1MB by the second stage
23 .startup : { * (.startup); }
24 .text : { * (.text); }
25 .rodata : { * (.rodata); }
26 .data : { * (.data); }
34 _bss_size = SIZEOF(.bss);
36 _main_size = . - _main_start;