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