diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-13 05:32:04 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-13 05:32:04 +0200 |
commit | f2f63a0f0583d672342d300f3c8b099f56a13c7d (patch) | |
tree | b9b38984692bece54c035832ca88021d7ae77b77 /src | |
parent | added OS memory read/write for thread command buffer (diff) | |
download | yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.gz yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.bz2 yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.lz yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.xz yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.zst yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hw/hw.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp index 7191d7c60..59c348ca9 100644 --- a/src/core/hw/hw.cpp +++ b/src/core/hw/hw.cpp @@ -27,10 +27,10 @@ template void Read<u32>(u32 &var, const u32 addr); template void Read<u16>(u16 &var, const u32 addr); template void Read<u8>(u8 &var, const u32 addr); -template void Write<const u64>(u32 addr, const u64 data); -template void Write<const u32>(u32 addr, const u32 data); -template void Write<const u16>(u32 addr, const u16 data); -template void Write<const u8>(u32 addr, const u8 data); +template void Write<u64>(u32 addr, const u64 data); +template void Write<u32>(u32 addr, const u32 data); +template void Write<u16>(u32 addr, const u16 data); +template void Write<u8>(u32 addr, const u8 data); /// Update hardware void Update() { |