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