diff options
| author | 2014-06-25 09:46:14 -0400 | |
|---|---|---|
| committer | 2014-06-25 09:46:14 -0400 | |
| commit | 469fe42fad01fc45e454e6acfa413eeae92e587e (patch) | |
| tree | 4cf876688cc2d03d34512f8f1a25bc26d853f1fb /src/core/mem_map.h | |
| parent | Merge pull request #7 from archshift/travis-osx (diff) | |
| parent | Loader: Refactored loading functions to only read data from binary if called. (diff) | |
| download | yuzu-469fe42fad01fc45e454e6acfa413eeae92e587e.tar.gz yuzu-469fe42fad01fc45e454e6acfa413eeae92e587e.tar.xz yuzu-469fe42fad01fc45e454e6acfa413eeae92e587e.zip | |
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 12d497ef3..d5899e4bb 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); | |||
| 139 | void Write16(const u32 addr, const u16 data); | 139 | void Write16(const u32 addr, const u16 data); |
| 140 | void Write32(const u32 addr, const u32 data); | 140 | void Write32(const u32 addr, const u32 data); |
| 141 | 141 | ||
| 142 | void WriteBlock(const u32 addr, const u8* data, const int size); | ||
| 143 | |||
| 142 | u8* GetPointer(const u32 Address); | 144 | u8* GetPointer(const u32 Address); |
| 143 | 145 | ||
| 144 | /** | 146 | /** |