rsb.cgs 603 B

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