mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 19:55:50 +00:00
Remove unused declarations.
This commit is contained in:
parent
3ee1e5cbf0
commit
e0f35e0e59
3 changed files with 2 additions and 22 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue