diff options
| author | comex <comexk@gmail.com> | 2014-08-23 15:26:59 -0400 |
|---|---|---|
| committer | comex <comexk@gmail.com> | 2014-08-23 15:26:59 -0400 |
| commit | e0f35e0e59983bad2c3ccad061ef9c80d8152c64 (patch) | |
| tree | 4996c2a6d0655e03949eb842632ba44528ccb9ae /Source/Core/VideoBackends/Software/SWCommandProcessor.cpp | |
| parent | 3ee1e5cbf04773c1966896607ec3ede9ac8e1074 (diff) | |
Remove unused declarations.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWCommandProcessor.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWCommandProcessor.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp b/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp index 63b85794ce..b205c112ea 100644 --- a/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp +++ b/Source/Core/VideoBackends/Software/SWCommandProcessor.cpp @@ -60,25 +60,6 @@ void DoState(PointerWrap &p) p.DoArray(g_pVideoData,writePos); } -// does it matter that there is no synchronization between threads during writes? -static inline void WriteLow (u32& _reg, u16 lowbits) -{ - _reg = (_reg & 0xFFFF0000) | lowbits; -} -static inline void WriteHigh(u32& _reg, u16 highbits) -{ - _reg = (_reg & 0x0000FFFF) | ((u32)highbits << 16); -} - -static inline u16 ReadLow(u32 _reg) -{ - return (u16)(_reg & 0xFFFF); -} -static inline u16 ReadHigh(u32 _reg) -{ - return (u16)(_reg >> 16); -} - static void UpdateInterrupts_Wrapper(u64 userdata, int cyclesLate) { UpdateInterrupts(userdata); |
