summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-11-17 23:44:53 +0200
committert895 <clombardo169@gmail.com>2023-11-25 00:46:47 -0500
commit9f91ba1f7357c61dd2c7c3b437ea203d467fd400 (patch)
tree3cfe55acf5d2f8a0d75373934b4c22a4e9bb2a09 /src/core/core.cpp
parent48388376206aaa7d887b41030019035a06203867 (diff)
arm: Implement native code execution backend
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 1d557fb43..408479019 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -136,9 +136,7 @@ struct System::Impl {
}
void Initialize(System& system) {
- const bool direct_mapped_address = Settings::IsNceEnabled();
- device_memory = std::make_unique<Core::DeviceMemory>(direct_mapped_address);
-
+ device_memory = std::make_unique<Core::DeviceMemory>();
is_multicore = Settings::values.use_multi_core.GetValue();
extended_memory_layout =
Settings::values.memory_layout_mode.GetValue() != Settings::MemoryLayout::Memory_4Gb;