mirror of
https://github.com/buhman/nds.git
synced 2025-06-18 14:35:38 -04:00
Likely the only Nintendo DS project on Github that does not use devkitpro
![]() 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. |
||
---|---|---|
arm7 | ||
arm9 | ||
include | ||
math | ||
model | ||
register | ||
res | ||
texture | ||
.gitignore | ||
cartridge.lds | ||
common.mk | ||
debug.lds | ||
dump.py | ||
header.s | ||
icosphere.h | ||
logo.s | ||
Makefile | ||
patch.py | ||
symbols.lds |