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

check_ret.s (241B)


      1# mach: crisv3 crisv8 crisv10
      2# output: 3\n
      3
      4# Test that ret works.
      5
      6 .include "testutils.inc"
      7 start
      8x:
      9 moveq 0,r3
     10 jsr z
     11w:
     12 quit
     13y:
     14 addq 1,r3
     15 checkr3 3
     16 quit
     17
     18z:
     19 addq 1,r3
     20 move srp,r2
     21 add.d y-w,r2
     22 move r2,srp
     23 ret
     24 addq 1,r3
     25 quit