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:
parent
2fc5c783ed
commit
4aa31b0618
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue