mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
Merge pull request #199 from lioncash/prototype
mem_map: Add missing prototype for Write64
This commit is contained in:
commit
77fe4b5c9e
1 changed files with 1 additions and 0 deletions
|
@ -147,6 +147,7 @@ u32 Read16_ZX(VAddr addr);
|
|||
void Write8(VAddr addr, u8 data);
|
||||
void Write16(VAddr addr, u16 data);
|
||||
void Write32(VAddr addr, u32 data);
|
||||
void Write64(VAddr addr, u64 data);
|
||||
|
||||
void WriteBlock(VAddr addr, const u8* data, size_t size);
|
||||
|
||||
|
|
Loading…
Reference in a new issue