sbc.cgs 603 B

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