Memory: remove ReadBlock with current process

This commit is contained in:
Weiyi Wang 2018-11-17 15:01:45 -05:00
parent 524364d95a
commit 8871f5a4ac
5 changed files with 7 additions and 10 deletions

View file

@ -483,11 +483,6 @@ void ReadBlock(const Kernel::Process& process, const VAddr src_addr, void* dest_
}
}
void ReadBlock(const VAddr src_addr, void* dest_buffer, const std::size_t size) {
ReadBlock(*Core::System::GetInstance().Kernel().GetCurrentProcess(), src_addr, dest_buffer,
size);
}
void Write8(const VAddr addr, const u8 data) {
Write<u8>(addr, data);
}