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