diff options
author | bunnei <bunneidev@gmail.com> | 2014-06-25 09:46:14 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-06-25 09:46:14 -0400 |
commit | 469fe42fad01fc45e454e6acfa413eeae92e587e (patch) | |
tree | 4cf876688cc2d03d34512f8f1a25bc26d853f1fb /src/core/mem_map.h | |
parent | 10f11b958eef9b1655301555f0a89ec21fa12211 (diff) | |
parent | a7f1c544909ee1034356666e04bea3a4b4609a95 (diff) |
Merge pull request #22 from bunnei/loader-improvements
Refactor loader code and add preliminary NCCH support
Diffstat (limited to 'src/core/mem_map.h')
-rw-r--r-- | src/core/mem_map.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index 12d497ef3f..d5899e4bbb 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h @@ -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); /** |