summaryrefslogtreecommitdiffstats
path: root/src/core/hw/hw.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-11 04:45:40 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-11 04:45:40 +0200
commit5d95bb98434b8e7cd67010f6064ccdb69c1222bb (patch)
tree5d4c4f1b10d37e2619322a7f837883d61b1d2865 /src/core/hw/hw.cpp
parentadded logger for generic HLE (diff)
downloadyuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar
yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.gz
yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.bz2
yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.lz
yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.xz
yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.tar.zst
yuzu-5d95bb98434b8e7cd67010f6064ccdb69c1222bb.zip
Diffstat (limited to 'src/core/hw/hw.cpp')
-rw-r--r--src/core/hw/hw.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp
index 44625e3af..7191d7c60 100644
--- a/src/core/hw/hw.cpp
+++ b/src/core/hw/hw.cpp
@@ -12,12 +12,12 @@ namespace HW {
template <typename T>
inline void Read(T &var, const u32 addr) {
- NOTICE_LOG(HW, "Hardware read from address %08X", addr);
+ NOTICE_LOG(HW, "read from address %08X", addr);
}
template <typename T>
inline void Write(u32 addr, const T data) {
- NOTICE_LOG(HW, "Hardware write to address %08X", addr);
+ NOTICE_LOG(HW, "write to address %08X", addr);
}
// Explicitly instantiate template functions because we aren't defining this in the header:
@@ -40,12 +40,12 @@ void Update() {
/// Initialize hardware
void Init() {
LCD::Init();
- NOTICE_LOG(HW, "Hardware initialized OK");
+ NOTICE_LOG(HW, "initialized OK");
}
/// Shutdown hardware
void Shutdown() {
- NOTICE_LOG(HW, "Hardware shutdown OK");
+ NOTICE_LOG(HW, "shutdown OK");
}
} \ No newline at end of file