summaryrefslogtreecommitdiff
path: root/src/core/hw
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hw')
-rw-r--r--src/core/hw/gpu.h4
-rw-r--r--src/core/hw/hw.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/gpu.h b/src/core/hw/gpu.h
index 3078e4142..42f18a0e7 100644
--- a/src/core/hw/gpu.h
+++ b/src/core/hw/gpu.h
@@ -235,10 +235,10 @@ u32 GetFramebufferAddr(const u32 address);
235FramebufferLocation GetFramebufferLocation(u32 address); 235FramebufferLocation GetFramebufferLocation(u32 address);
236 236
237template <typename T> 237template <typename T>
238inline void Read(T &var, const u32 addr); 238void Read(T &var, const u32 addr);
239 239
240template <typename T> 240template <typename T>
241inline void Write(u32 addr, const T data); 241void Write(u32 addr, const T data);
242 242
243/// Update hardware 243/// Update hardware
244void Update(); 244void Update();
diff --git a/src/core/hw/hw.h b/src/core/hw/hw.h
index 92e9304ca..1055ed94f 100644
--- a/src/core/hw/hw.h
+++ b/src/core/hw/hw.h
@@ -9,10 +9,10 @@
9namespace HW { 9namespace HW {
10 10
11template <typename T> 11template <typename T>
12inline void Read(T &var, const u32 addr); 12void Read(T &var, const u32 addr);
13 13
14template <typename T> 14template <typename T>
15inline void Write(u32 addr, const T data); 15void Write(u32 addr, const T data);
16 16
17/// Update hardware 17/// Update hardware
18void Update(); 18void Update();