diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-06 02:01:55 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-06 02:01:55 +0200 |
commit | da81742439ba61d832c0d1c98b736308bfe0f58c (patch) | |
tree | 0b0f88e8866233d9258b088cf6f5e40a0f948e8b /src | |
parent | FS: Fix port name (old port name was based on an unaligned memory read). (diff) | |
download | yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.tar yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.tar.gz yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.tar.bz2 yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.tar.lz yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.tar.xz yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.tar.zst yuzu-da81742439ba61d832c0d1c98b736308bfe0f58c.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/mem_map_funcs.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/mem_map_funcs.cpp b/src/core/mem_map_funcs.cpp index e9533a0c5..b4884d9d9 100644 --- a/src/core/mem_map_funcs.cpp +++ b/src/core/mem_map_funcs.cpp @@ -252,12 +252,6 @@ u32 Read32(const u32 addr) { return (u32)data; } -u64 Read64(const u32 addr) { - u64_le data = 0; - Read<u64_le>(data, addr); - return data; -} - u32 Read8_ZX(const u32 addr) { return (u32)Read8(addr); } |