diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-18 17:52:49 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-18 17:52:49 -0400 |
commit | 958bca606e80110e05d7c142dda3097fddc96503 (patch) | |
tree | 576917751444b4dfdb476d040b4e075bde431b7b /src/core/hw/ndma.h | |
parent | 68a8594d041c416301feeb43bb9f1c41d681b795 (diff) | |
parent | 70c2cce963264678b5ba5b6aa17c2653bf459e61 (diff) |
Merge branch 'hle-interface'
Diffstat (limited to 'src/core/hw/ndma.h')
-rw-r--r-- | src/core/hw/ndma.h | 26 |
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 |