mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
DSPLLE: Use Memory functions isntead of directly using Memory::physical_base
Fixes bug 11980
This commit is contained in:
@ -22,6 +22,12 @@ u8 DSP::Host::ReadHostMemory(u32 addr)
|
||||
void DSP::Host::WriteHostMemory(u8 value, u32 addr)
|
||||
{
|
||||
}
|
||||
void DSP::Host::DMAToDSP(u16* dst, u32 addr, u32 size)
|
||||
{
|
||||
}
|
||||
void DSP::Host::DMAFromDSP(const u16* src, u32 addr, u32 size)
|
||||
{
|
||||
}
|
||||
void DSP::Host::OSD_AddMessage(std::string str, u32 ms)
|
||||
{
|
||||
}
|
||||
@ -33,6 +39,9 @@ bool DSP::Host::IsWiiHost()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
void DSP::Host::CodeLoaded(u32 addr, size_t size)
|
||||
{
|
||||
}
|
||||
void DSP::Host::CodeLoaded(const u8* ptr, size_t size)
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user