st-d.cgs 299 B

1234567891011121314151617181920212223242526
  1. # m32r testcase for st $src1,@($slo16,$src2)
  2. # mach(): m32r m32rx
  3. .include "testutils.inc"
  4. start
  5. .global st_d
  6. st_d:
  7. mvaddr_h_gr r4, data_loc
  8. mvi_h_gr r5, 1
  9. st r5, @(#8,r4)
  10. mvaddr_h_gr r4, data_loc2
  11. ld r4, @r4
  12. test_h_gr r4, 1
  13. pass
  14. data_loc:
  15. .word 0
  16. .word 0
  17. data_loc2:
  18. .word 0