MemMap: Added a WriteBlock function to write a buffer of data to memory.

This commit is contained in:
bunnei 2014-06-24 18:51:31 -04:00
parent cedc28dcc6
commit 6aebd4ac98
2 changed files with 14 additions and 0 deletions

View file

@ -139,6 +139,8 @@ void Write8(const u32 addr, const u8 data);
void Write16(const u32 addr, const u16 data);
void Write32(const u32 addr, const u32 data);
void WriteBlock(const u32 addr, const u8* data, const int size);
u8* GetPointer(const u32 Address);
/**