st3_test.ds 399 B

1234567891011121314151617181920212223242526
  1. ; This test checks when $st3 gets decremented during BLOOP{,I} iterations.
  2. ; Expected $st3 values are: 2, 1, 0x0b88, 2, 1, 0x0b88.
  3. incdir "tests"
  4. include "dsp_base.inc"
  5. test_main:
  6. LRI $ac0.l, #2
  7. BLOOP $ac0.l, last_of_bloop
  8. CALL send_back
  9. NOP
  10. NOP
  11. last_of_bloop:
  12. NOP
  13. CALL send_back
  14. BLOOPI #2, last_of_bloopi
  15. CALL send_back
  16. NOP
  17. NOP
  18. last_of_bloopi:
  19. NOP
  20. CALL send_back
  21. JMP end_of_test