mov.cgs 596 B

123456789101112131415161718192021222324252627282930313233343536
  1. # arm testcase for mov$cond${set-cc?} $rd,$imm12
  2. # mach: unfinished
  3. .include "testutils.inc"
  4. start
  5. .global mov_imm
  6. mov_imm:
  7. mov00 pc,0
  8. pass
  9. # arm testcase for mov$cond${set-cc?} $rd,$rn,$rm,${operand2-shifttype} ${operand2-shiftimm}
  10. # mach: unfinished
  11. .include "testutils.inc"
  12. start
  13. .global mov_reg_imm_shift
  14. mov_reg_imm_shift:
  15. mov00 pc,pc,pc,lsl 0
  16. pass
  17. # arm testcase for mov$cond${set-cc?} $rd,$rn,$rm,${operand2-shifttype} ${operand2-shiftreg}
  18. # mach: unfinished
  19. .include "testutils.inc"
  20. start
  21. .global mov_reg_reg_shift
  22. mov_reg_reg_shift:
  23. mov00 pc,pc,pc,lsl pc
  24. pass