Data in EWRAM
Posted: Sat Jul 06, 2019 9:31 pm
Trying to port some asm stuff to the GBA again and I'm having problems with including data/code in EWRAM.
Is that supposed to work and in that case how do I do it?
Just doing
Instead doing
No warnings or errors.
Is that supposed to work and in that case how do I do it?
Just doing
The rom file size shows that the data should be included but it's all zeroed..section .ewram
.incbin "somedata.bin"
Instead doing
The size of the rom file doesn't reflect the data.section .sbss
.incbin "somedata.bin"
No warnings or errors.