mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
MMIO: Port the VideoCommon CP MMIOs to the new interface (and provide framework for other video related mappings).
This commit is contained in:
@ -311,6 +311,16 @@ void VideoBackendHardware::Video_AbortFrame()
|
||||
CommandProcessor::AbortFrame();
|
||||
}
|
||||
|
||||
void VideoBackendHardware::RegisterCPMMIO(MMIO::Mapping* mmio, u32 base)
|
||||
{
|
||||
CommandProcessor::RegisterMMIO(mmio, base);
|
||||
}
|
||||
|
||||
void VideoBackendHardware::RegisterPEMMIO(MMIO::Mapping* mmio, u32 base)
|
||||
{
|
||||
PixelEngine::RegisterMMIO(mmio, base);
|
||||
}
|
||||
|
||||
readFn16 VideoBackendHardware::Video_CPRead16()
|
||||
{
|
||||
return CommandProcessor::Read16;
|
||||
|
Reference in New Issue
Block a user