diff options
author | bunnei <bunneidev@gmail.com> | 2020-04-03 04:00:41 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2020-04-17 06:59:29 +0200 |
commit | dc25c86556c36dd23224d88234afc9ecbf780719 (patch) | |
tree | 5dbe45bcc17ecad8675e7a4cb03dd34361f01e03 /src/core/core.h | |
parent | dynarmic: Enable strict alignment checks. (diff) | |
download | yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.tar yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.tar.gz yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.tar.bz2 yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.tar.lz yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.tar.xz yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.tar.zst yuzu-dc25c86556c36dd23224d88234afc9ecbf780719.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/core.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index c2bdef07e..6cd93000a 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -91,6 +91,7 @@ namespace Core { class ARM_Interface; class CoreManager; +class DeviceMemory; class ExclusiveMonitor; class FrameLimiter; class PerfStats; @@ -256,6 +257,12 @@ public: /// Gets the global scheduler const Kernel::GlobalScheduler& GlobalScheduler() const; + /// Gets the manager for the guest device memory + DeviceMemory& GetDeviceMemory(); + + /// Gets the manager for the guest device memory + const DeviceMemory& GetDeviceMemory() const; + /// Provides a pointer to the current process Kernel::Process* CurrentProcess(); |