EECS151 / riscv-cpu / software / c_example / c_example.ld
c_example.ld
Raw
SECTIONS
{
    . = 0x40000000;
    .text : {
        * (.start);
        * (.text);
    }
}