summaryrefslogtreecommitdiff
path: root/src/core/hw/ndma.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-17 23:43:55 -0400
committerbunnei <ericbunnie@gmail.com>2014-04-17 23:43:55 -0400
commitc3a4b4bfca154f3f27830fe747c0fd74f8459d84 (patch)
tree3c91454f16cafa94f2076d55998d411236eaf066 /src/core/hw/ndma.h
parentb2baafaf8ba760ce2b975391fd04db52ad386e29 (diff)
added NDMA hardware interface
Diffstat (limited to 'src/core/hw/ndma.h')
-rw-r--r--src/core/hw/ndma.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/core/hw/ndma.h b/src/core/hw/ndma.h
new file mode 100644
index 000000000..d8fa3d40b
--- /dev/null
+++ b/src/core/hw/ndma.h
@@ -0,0 +1,26 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+
+namespace NDMA {
+
+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