summaryrefslogtreecommitdiffstats
path: root/src/core/hw/ndma.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-18 05:43:55 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-18 05:43:55 +0200
commitc3a4b4bfca154f3f27830fe747c0fd74f8459d84 (patch)
tree3c91454f16cafa94f2076d55998d411236eaf066 /src/core/hw/ndma.h
parentadded GSP heap memory allocation (diff)
downloadyuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.tar
yuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.tar.gz
yuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.tar.bz2
yuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.tar.lz
yuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.tar.xz
yuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.tar.zst
yuzu-c3a4b4bfca154f3f27830fe747c0fd74f8459d84.zip
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