DSPLLE: Use Memory functions isntead of directly using Memory::physical_base

Fixes bug 11980
This commit is contained in:
Pokechu22 2020-04-08 14:25:33 -07:00
parent 59dc7cfe7d
commit 1ca3710bd2
6 changed files with 39 additions and 80 deletions

View file

@ -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)
{
}