cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

kernel.ld (196B)


      1SECTIONS {
      2	. = 0x100000;
      3
      4	.text : {
      5		__load_st = .;
      6		*(.head)
      7		*(.text)
      8	}
      9
     10	.rodata : {
     11		*(.rodata)
     12	}
     13
     14	.data : {
     15		*(.data*)
     16		__load_en = .;
     17	}
     18
     19	.bss : {
     20		*(.bss)
     21		__bss_en = .;
     22	}
     23}