GB I/O: DMA register is R/W

This commit is contained in:
Vicki Pfau 2018-06-28 11:54:03 -07:00
parent 76a361452b
commit 8c43a68731
2 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@ Bugfixes:
- Qt: Fix build with Qt 5.11 (fixes mgba.io/i/1094)
- GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107)
- GBA BIOS: Fix BitUnPack final byte
- GB I/O: DMA register is R/W
0.6.3: (2017-04-14)
Bugfixes:

View File

@ -139,6 +139,7 @@ void GBIOReset(struct GB* gb) {
GBIOWrite(gb, REG_SCY, 0x00);
GBIOWrite(gb, REG_SCX, 0x00);
GBIOWrite(gb, REG_LYC, 0x00);
GBIOWrite(gb, REG_DMA, 0xFF);
GBIOWrite(gb, REG_BGP, 0xFC);
GBIOWrite(gb, REG_OBP0, 0xFF);
GBIOWrite(gb, REG_OBP1, 0xFF);
@ -530,6 +531,7 @@ uint8_t GBIORead(struct GB* gb, unsigned address) {
case REG_SCX:
case REG_LY:
case REG_LYC:
case REG_DMA:
case REG_BGP:
case REG_OBP0:
case REG_OBP1: