aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-04-04 09:06:59 -0300
committerGitHub <noreply@github.com>2021-04-04 14:06:59 +0200
commit874540bb5c1c5737bc9b0bfdc96fe1cf12ff164d (patch)
tree68582881e7f4965d7e0938020a9f5dd1773f070a /Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs
parent3bc107d491745a0d1f18e48d8c6c0f74565ae633 (diff)
Allow DRAM size to be increased from 4GB to 6GB (#2174)
* Allow DRAM size to be increased from 4GB to 6GB * Add option on the UI
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs')
-rw-r--r--Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs b/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs
deleted file mode 100644
index 7dfc2b77..00000000
--- a/Ryujinx.HLE/HOS/Kernel/Memory/KMemoryArrange.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-namespace Ryujinx.HLE.HOS.Kernel.Memory
-{
- class KMemoryArrange
- {
- public KMemoryArrangeRegion Service { get; private set; }
- public KMemoryArrangeRegion NvServices { get; private set; }
- public KMemoryArrangeRegion Applet { get; private set; }
- public KMemoryArrangeRegion Application { get; private set; }
-
- public KMemoryArrange(
- KMemoryArrangeRegion service,
- KMemoryArrangeRegion nvServices,
- KMemoryArrangeRegion applet,
- KMemoryArrangeRegion application)
- {
- Service = service;
- NvServices = nvServices;
- Applet = applet;
- Application = application;
- }
- }
-} \ No newline at end of file