libpayload-x86: Add PS2 mouse driver
[coreboot.git] / util / riscv / spike-elf.ld
blob44114f7cadcbc60fae7f43867ab987b2b7f1e5a1
1 /* See make-spike-elf.sh */
3 ENTRY(_start);
4 SECTIONS
6         . = 0x80000000;
7         _start = .;
8         .data : {
9                 *(.data)
10         }
12         tohost = .;
13         . = . + 8;
14         fromhost = .;