diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-05 07:24:14 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-05 07:24:14 +0200 |
commit | 6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38 (patch) | |
tree | c0d561b08bceefe2e1006c7fc4576177cfd02435 /src/core | |
parent | added a module for interfacing to hardware LCD (diff) | |
download | yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.tar yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.tar.gz yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.tar.bz2 yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.tar.lz yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.tar.xz yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.tar.zst yuzu-6433f4d6f9c1fd0af4eb5689fe1e363584bb9d38.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/src/hw/hw.cpp | 7 | ||||
-rw-r--r-- | src/core/src/hw/hw.h | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/core/src/hw/hw.cpp b/src/core/src/hw/hw.cpp index 3e4f2c435..50001c87a 100644 --- a/src/core/src/hw/hw.cpp +++ b/src/core/src/hw/hw.cpp @@ -24,6 +24,7 @@ #include "log.h" #include "hw/hw.h" +#include "hw/hw_lcd.h" namespace HW { @@ -49,8 +50,14 @@ 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); +/// Update hardware +void Update() { + LCD::Update(); +} + /// Initialize hardware void Init() { + LCD::Init(); NOTICE_LOG(HW, "Hardware initialized OK"); } diff --git a/src/core/src/hw/hw.h b/src/core/src/hw/hw.h index c69d6525f..245822423 100644 --- a/src/core/src/hw/hw.h +++ b/src/core/src/hw/hw.h @@ -32,6 +32,9 @@ inline void Read(T &var, const u32 addr); template <typename T> inline void Write(u32 addr, const T data); +/// Update hardware +void Update(); + /// Initialize hardware void Init(); |