diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-02 14:16:43 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-16 19:22:40 +0100 |
| commit | 4129b30494757a79daf8a07e6a07ea937ba1c94b (patch) | |
| tree | 2950899a8d57dcbb4cfbb849fc4798b4d5f1f22c /Source/Core/VideoCommon/MainBase.cpp | |
| parent | bdedaa24a9747b4890622cd356ed0a6761bad27d (diff) | |
MMIO: Port the VideoCommon CP MMIOs to the new interface (and provide framework for other video related mappings).
Diffstat (limited to 'Source/Core/VideoCommon/MainBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/MainBase.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/MainBase.cpp b/Source/Core/VideoCommon/MainBase.cpp index 7d81e4a10a..63655a434d 100644 --- a/Source/Core/VideoCommon/MainBase.cpp +++ b/Source/Core/VideoCommon/MainBase.cpp @@ -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; |
