079cc940a6
Runs in microwatt (GHDL and FPGA) and qemu. Port done initially by Michael Neuling, with help from Anton Blanchard and Jordan Niethe.
14 lines
235 B
Plaintext
14 lines
235 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0;
|
|
_start = .;
|
|
.head : {
|
|
KEEP(*(.head))
|
|
}
|
|
|
|
/* Put this at 0x1700 which is right after our execption
|
|
* vectors in head.S.
|
|
*/
|
|
. = 0x1700;
|
|
}
|