diff options
| author | 2014-11-16 22:50:13 -0500 | |
|---|---|---|
| committer | 2014-11-16 22:50:13 -0500 | |
| commit | cfea27a615907520595753f97c449d5f48a660e2 (patch) | |
| tree | 38df41bdde3bc0b88a578d97a54bc35072d29b2c | |
| parent | Merge pull request #195 from lioncash/control (diff) | |
| download | yuzu-cfea27a615907520595753f97c449d5f48a660e2.tar.gz yuzu-cfea27a615907520595753f97c449d5f48a660e2.tar.xz yuzu-cfea27a615907520595753f97c449d5f48a660e2.zip | |
mem_map: Add missing prototype for Write64
| -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 | ||