12345678910111213 |
- .section ".dram.test","a"
- .globl __dram_test_start
- __dram_test_start:
- .incbin "testimg.bin"
- .type __dram_test_start, @object
- .size __dram_test_start, . - __dram_test_start
- .globl __dram_test_end
- __dram_test_end:
- .globl __dram_test_size
- __dram_test_size = . - __dram_test_start
|