1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-29 02:57:00 -06:00

memory: Correct prototype of ZeroBlock

Previously, the prototype wasn't matching the definition, which has a
Processor parameter before the destination address.
This commit is contained in:
Lioncash 2018-08-05 21:34:00 -04:00
parent 2fc5c783ed
commit 4aa31b0618

View File

@ -160,7 +160,7 @@ void ReadBlock(VAddr src_addr, void* dest_buffer, size_t size);
void WriteBlock(const Kernel::Process& process, VAddr dest_addr, const void* src_buffer,
size_t size);
void WriteBlock(VAddr dest_addr, const void* src_buffer, size_t size);
void ZeroBlock(VAddr dest_addr, size_t size);
void ZeroBlock(const Kernel::Process& process, VAddr dest_addr, size_t size);
void CopyBlock(VAddr dest_addr, VAddr src_addr, size_t size);
u8* GetPointer(VAddr virtual_address);