summaryrefslogtreecommitdiff
path: root/src/core/arm/arm_interface.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-24 21:43:32 -0400
committerGravatar Lioncash2018-08-24 21:50:39 -0400
commit43e0d865faa932b980580a79a87d5ea464e9545c (patch)
treeb4f06db70fe68a3edffc29e9373b9d98b8e35306 /src/core/arm/arm_interface.h
parentPort #4013 from Citra: "Init logging sooner so we dont miss some logs on star... (diff)
downloadyuzu-43e0d865faa932b980580a79a87d5ea464e9545c.tar.gz
yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.tar.xz
yuzu-43e0d865faa932b980580a79a87d5ea464e9545c.zip
core: Namespace all code in the arm subdirectory under the Core namespace
Gets all of these types and interfaces out of the global namespace.
Diffstat (limited to 'src/core/arm/arm_interface.h')
-rw-r--r--src/core/arm/arm_interface.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index b0d7ced7f..c368745b1 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -8,6 +8,8 @@
8#include "common/common_types.h" 8#include "common/common_types.h"
9#include "core/hle/kernel/vm_manager.h" 9#include "core/hle/kernel/vm_manager.h"
10 10
11namespace Core {
12
11/// Generic ARM11 CPU interface 13/// Generic ARM11 CPU interface
12class ARM_Interface : NonCopyable { 14class ARM_Interface : NonCopyable {
13public: 15public:
@@ -122,3 +124,5 @@ public:
122 /// Prepare core for thread reschedule (if needed to correctly handle state) 124 /// Prepare core for thread reschedule (if needed to correctly handle state)
123 virtual void PrepareReschedule() = 0; 125 virtual void PrepareReschedule() = 0;
124}; 126};
127
128} // namespace Core