dmxy.s 347 B

123456789101112131415161718192021
  1. # sh testcase for setdmx, setdmy, clrdmxy
  2. # mach: shdsp
  3. # as(shdsp): -defsym sim_cpu=1 -dsp
  4. .include "testutils.inc"
  5. start
  6. set_grs_a5a5
  7. setdmx
  8. test_sr_bit_set 0x400
  9. test_sr_bit_clear 0x800
  10. setdmy
  11. test_sr_bit_clear 0x400
  12. test_sr_bit_set 0x800
  13. clrdmxy
  14. test_sr_bit_clear 0x400
  15. test_sr_bit_clear 0x800
  16. test_grs_a5a5
  17. pass
  18. exit 0