mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 00:30:17 +00:00
Mockingboard: Reading 6522's IER now returns 0x80|IER. (Fixes #567)
This commit is contained in:
parent
6ad2621282
commit
7f478fa36c
@ -549,7 +549,7 @@ static BYTE SY6522_Read(BYTE nDevice, BYTE nReg)
|
||||
nValue = pMB->sy6522.IFR;
|
||||
break;
|
||||
case 0x0e: // IER
|
||||
nValue = 0x80; // Datasheet says this is 0x80|IER
|
||||
nValue = 0x80 | pMB->sy6522.IER; // GH#567
|
||||
break;
|
||||
case 0x0f: // ORA_NO_HS
|
||||
nValue = pMB->sy6522.ORA;
|
||||
|
Loading…
Reference in New Issue
Block a user