diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-04 01:09:57 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-16 19:22:40 +0100 |
| commit | f8f14c83a393b6fac61d2420b56f9ce65ea8f034 (patch) | |
| tree | fa995b2e1164f955754e4fad2441fc681d189802 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 5b5dfb384ee8172b4a09412c27a753eef5df751c (diff) | |
MMIO: Port the SW CP/PE MMIOs to the new interface.
Migration is now complete.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index f7c4856b61..4886d2b221 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -362,12 +362,12 @@ void VideoSoftware::Video_AbortFrame(void) void VideoSoftware::RegisterCPMMIO(MMIO::Mapping* mmio, u32 base) { - // TODO + SWCommandProcessor::RegisterMMIO(mmio, base); } void VideoSoftware::RegisterPEMMIO(MMIO::Mapping* mmio, u32 base) { - // TODO + SWPixelEngine::RegisterMMIO(mmio, base); } readFn16 VideoSoftware::Video_CPRead16() |
