diff options
| author | 2014-11-17 15:21:41 -0500 | |
|---|---|---|
| committer | 2014-11-17 15:21:41 -0500 | |
| commit | 77fe4b5c9eb0f74b44ad47bf75dd6098975cd0e9 (patch) | |
| tree | c20860f8d6dc5ee92a83624b632a2e5dd16218a3 | |
| parent | Merge pull request #202 from lioncash/init-order (diff) | |
| parent | mem_map: Add missing prototype for Write64 (diff) | |
| download | yuzu-77fe4b5c9eb0f74b44ad47bf75dd6098975cd0e9.tar.gz yuzu-77fe4b5c9eb0f74b44ad47bf75dd6098975cd0e9.tar.xz yuzu-77fe4b5c9eb0f74b44ad47bf75dd6098975cd0e9.zip | |
Merge pull request #199 from lioncash/prototype
mem_map: Add missing prototype for Write64
Diffstat (limited to '')
| -rw-r--r-- | src/core/mem_map.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/mem_map.h b/src/core/mem_map.h index eed445046..87de5cd63 100644 --- a/src/core/mem_map.h +++ b/src/core/mem_map.h | |||
| @@ -147,6 +147,7 @@ u32 Read16_ZX(VAddr addr); | |||
| 147 | void Write8(VAddr addr, u8 data); | 147 | void Write8(VAddr addr, u8 data); |
| 148 | void Write16(VAddr addr, u16 data); | 148 | void Write16(VAddr addr, u16 data); |
| 149 | void Write32(VAddr addr, u32 data); | 149 | void Write32(VAddr addr, u32 data); |
| 150 | void Write64(VAddr addr, u64 data); | ||
| 150 | 151 | ||
| 151 | void WriteBlock(VAddr addr, const u8* data, size_t size); | 152 | void WriteBlock(VAddr addr, const u8* data, size_t size); |
| 152 | 153 | ||