initial commit
[newsys] / bootbios / bootbios.ld
1 OUTPUT_FORMAT(binary)
2
3 SECTIONS {
4         . = 0x7c00;
5
6         .boot : { * (.boot); }
7
8         /* second stage boot loader */
9         .boot2 : {
10                 * (.boot2);
11                 /* pad to the next sector boundary */
12                 . = ALIGN(512);
13         }
14         _boot2_size = SIZEOF(.boot2);
15 }