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

test-armv6m-undef.ld (251B)


      1ENTRY(exc_reset_thumb)
      2
      3SECTIONS
      4{
      5    . = 0x0;
      6    .text : {
      7        *(.text)
      8    }
      9    .data : {
     10        *(.data)
     11    }
     12    .rodata : {
     13        *(.rodata)
     14    }
     15    .bss : {
     16        *(.bss)
     17    }
     18    /DISCARD/ : {
     19        *(.ARM.attributes)
     20    }
     21}