From 92f8d93e969abf942002439ef583d2a25acad019 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 15 Feb 2014 03:23:35 +0100 Subject: Remove the old MMIO access "interface". --- .../VideoBackends/Software/SWCommandProcessor.cpp | 24 ---------------------- 1 file changed, 24 deletions(-) (limited to 'Source/Core/VideoBackends/Software/SWCommandProcessor.cpp') diff --git a/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp b/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp index e2f402a040..450ce5712a 100644 --- a/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp +++ b/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp @@ -174,30 +174,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() { if (cpreg.ctrl.GPLinkEnable) -- cgit v1.2.3