Before this commit, attempting to start the rom on real NDS/DSi
hardware would result in the display of a solid white screen, with
no apparent evidence of the arm9 program running.
After much testing, I found that this issue was directly caused "main
mmeory" bus contention. Because arm7 and arm9 are both attempting to
read instructions from ewram at the same time, and arm9 bus access
stalls completely.
I also found that this could not be mitigated with giving arm9
priority in EXMEMCNT.
The solution appears to be to relocate arm7 code execution from
main/shared memory to an arm7-internal memory.
After this commit, the examples now function as intended on real
NDS/DSi hardware.