Prepopulate RCNT

This commit is contained in:
Jeffrey Pfau 2013-10-12 16:37:10 -07:00
parent d8778cf516
commit 3ca0a97ca1
1 changed files with 1 additions and 0 deletions

View File

@ -4,6 +4,7 @@
void GBAIOInit(struct GBA* gba) {
gba->memory.io[REG_DISPCNT >> 1] = 0x0080;
gba->memory.io[REG_RCNT >> 1] = 0x8000;
gba->memory.io[REG_KEYINPUT >> 1] = 0x3FF;
}