testdata.S 277 B

1234567891011121314
  1. .section ".dram.abcrom","a"
  2. .globl testdata
  3. testdata:
  4. .Lx = 0x00001111
  5. .Ly = 0
  6. .rept 0x20000
  7. .long .Lx
  8. .Lx = ((.Lx * 0x89abcdef) + ((.Lx * 0x89abcdef) >> 32) + (.Ly * 0x76543210)) & 0xffffffff
  9. .Ly = .Ly + 1
  10. .endr
  11. .type testdata,@object
  12. .size testdata,. - testdata