testdata.S 259 B

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