1234567891011121314 |
- .section ".dram.rodata","a"
- .globl testdata
- testdata:
- x = 0x00001111
- y = 0
- .rept 0x20000
- .long x
- x = ((x * 0x89abcdef) + ((x * 0x89abcdef) >> 32) + (y * 0x76543210)) & 0xffffffff
- y = y + 1
- .endr
- .type testdata,@object
- .size testdata,. - testdata
|