aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hw/hw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hw/hw.h')
-rw-r--r--src/core/hw/hw.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/core/hw/hw.h b/src/core/hw/hw.h
new file mode 100644
index 00000000..5b0cc8c8
--- /dev/null
+++ b/src/core/hw/hw.h
@@ -0,0 +1,26 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common_types.h"
+
+namespace HW {
+
+template <typename T>
+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();
+
+/// Shutdown hardware
+void Shutdown();
+
+} // namespace