GB: Added open bus bits on $FF07
This commit is contained in:
parent
5279ebb688
commit
9305c432b4
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ uint8_t GbTimer::Read(uint16_t addr)
|
|||
case 0xFF04: return _divider >> 8;
|
||||
case 0xFF05: return _counter; //FF05 - TIMA - Timer counter (R/W)
|
||||
case 0xFF06: return _modulo; //FF06 - TMA - Timer Modulo (R/W)
|
||||
case 0xFF07: return _control; //FF07 - TAC - Timer Control (R/W)
|
||||
case 0xFF07: return _control | 0xF8; //FF07 - TAC - Timer Control (R/W)
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue