summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/CommandProcessor.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-02-15 03:23:35 +0100
committerPierre Bourdon <delroth@gmail.com>2014-02-16 19:22:40 +0100
commit92f8d93e969abf942002439ef583d2a25acad019 (patch)
treea39b5dd9457eb3248b5c7970b7715fac5f5cb602 /Source/Core/VideoCommon/CommandProcessor.cpp
parentf8f14c83a393b6fac61d2420b56f9ce65ea8f034 (diff)
Remove the old MMIO access "interface".
Diffstat (limited to 'Source/Core/VideoCommon/CommandProcessor.cpp')
-rw-r--r--Source/Core/VideoCommon/CommandProcessor.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/Source/Core/VideoCommon/CommandProcessor.cpp b/Source/Core/VideoCommon/CommandProcessor.cpp
index bf4b97b825..ca70a43703 100644
--- a/Source/Core/VideoCommon/CommandProcessor.cpp
+++ b/Source/Core/VideoCommon/CommandProcessor.cpp
@@ -296,30 +296,6 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base)
);
}
-void Read16(u16& _rReturnValue, const u32 _Address)
-{
- // HACK: Remove this function when the new MMIO interface is used.
- Memory::mmio_mapping->Read(_Address, _rReturnValue);
-}
-
-void Write16(const u16 _Value, const u32 _Address)
-{
- // HACK: Remove this function when the new MMIO interface is used.
- Memory::mmio_mapping->Write(_Address, _Value);
-}
-
-void Read32(u32& _rReturnValue, const u32 _Address)
-{
- // HACK: Remove this function when the new MMIO interface is used.
- Memory::mmio_mapping->Read(_Address, _rReturnValue);
-}
-
-void Write32(const u32 _Data, const u32 _Address)
-{
- // HACK: Remove this function when the new MMIO interface is used.
- Memory::mmio_mapping->Write(_Address, _Data);
-}
-
void STACKALIGN GatherPipeBursted()
{
ProcessFifoEvents();