mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-22 02:01:39 +00:00
DSPLLE: Use Memory functions isntead of directly using Memory::physical_base
Fixes bug 11980
This commit is contained in:
parent
59dc7cfe7d
commit
1ca3710bd2
6 changed files with 39 additions and 80 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue