mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 11:05:46 +00:00
device_memory: Enable direct mapped addresses for nce
This commit is contained in:
parent
23749c1a88
commit
dee5002355
5 changed files with 21 additions and 8 deletions
|
@ -136,7 +136,8 @@ struct System::Impl {
|
|||
}
|
||||
|
||||
void Initialize(System& system) {
|
||||
device_memory = std::make_unique<Core::DeviceMemory>();
|
||||
const bool direct_mapped_address = Settings::IsNceEnabled();
|
||||
device_memory = std::make_unique<Core::DeviceMemory>(direct_mapped_address);
|
||||
|
||||
is_multicore = Settings::values.use_multi_core.GetValue();
|
||||
extended_memory_layout =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue