MMIO: Port the MI MMIOs to the new interface (and rework that module extensively).

This commit is contained in:
Pierre Bourdon
2014-01-20 00:32:17 +01:00
parent f1dba04be7
commit b7a0c34906
4 changed files with 204 additions and 41 deletions

View File

@ -312,12 +312,14 @@ void InitMMIO(MMIO::Mapping* mmio)
{
VideoInterface::RegisterMMIO(mmio, 0xCC002000);
ProcessorInterface::RegisterMMIO(mmio, 0xCC003000);
MemoryInterface::RegisterMMIO(mmio, 0xCC004000);
}
void InitMMIOWii(MMIO::Mapping* mmio)
{
VideoInterface::RegisterMMIO(mmio, 0xCC002000);
ProcessorInterface::RegisterMMIO(mmio, 0xCC003000);
MemoryInterface::RegisterMMIO(mmio, 0xCC004000);
}
writeFn32 GetHWWriteFun32(const u32 _Address)