follow-up for last commit: don't warn about the EUART init commands.
This commit is contained in:
parent
423cdb6398
commit
702905131b
|
@ -234,6 +234,7 @@ void CEXIIPL::TransferByte(u8& _uByte)
|
|||
device_name = "UART";
|
||||
break;
|
||||
case REGION_EUART:
|
||||
case REGION_EUART_UNK:
|
||||
device_name = "EUART";
|
||||
break;
|
||||
case REGION_UART_UNK:
|
||||
|
@ -305,6 +306,11 @@ void CEXIIPL::TransferByte(u8& _uByte)
|
|||
}
|
||||
break;
|
||||
|
||||
case REGION_EUART_UNK:
|
||||
// Writes 0xf2 then 0xf3 on EUART init. Just need to return non-zero
|
||||
// so we can leave the byte untouched.
|
||||
break;
|
||||
|
||||
case REGION_UART_UNK:
|
||||
DEBUG_LOG(OSREPORT, "UART? %x", _uByte);
|
||||
_uByte = 0xff;
|
||||
|
|
|
@ -53,6 +53,7 @@ private:
|
|||
REGION_WRTC0 = 0x210000,
|
||||
REGION_WRTC1 = 0x210001,
|
||||
REGION_WRTC2 = 0x210008,
|
||||
REGION_EUART_UNK= 0x300000,
|
||||
REGION_EUART = 0x300001
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue