aboutsummaryrefslogtreecommitdiff
/* linker script for creating the example userspace program PL0_test
 */

/* no ENTRY() statement - this executable is run by jumping to it */

SECTIONS
{
    /* my thought up address userspace programs should run from */
    . = 0xaaa00000;
    
    __start = .;
    .another_weird_section_name_that_doesnt_matter :
    {
        /* have entry point at the beginning */
        KEEP(PL0_test.o)
        *(*)
    }
    __end = .;
}