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/VideoBackends/Software/SWmain.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/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 4f60f9d4f6..f7c4856b61 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -360,6 +360,16 @@ void VideoSoftware::Video_AbortFrame(void) { } +void VideoSoftware::RegisterCPMMIO(MMIO::Mapping* mmio, u32 base) +{ + // TODO +} + +void VideoSoftware::RegisterPEMMIO(MMIO::Mapping* mmio, u32 base) +{ + // TODO +} + readFn16 VideoSoftware::Video_CPRead16() { return SWCommandProcessor::Read16; |
