aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJesse Talavera-Greenberg <jesse@jesse.tg>2023-12-06 09:33:32 -0500
committerNadia Holmquist Pedersen <nadia@nhp.sh>2023-12-08 17:19:00 +0100
commit399a6af91c31d151444e2593ca43c8d17b168de7 (patch)
tree48fcaf84d8782081133650f3b1a20e8c507de95a /src
parent53e5aa62983dd2db68ac78c2a1272aba456362e6 (diff)
Move some constants to `MemConstants.h`
Diffstat (limited to 'src')
-rw-r--r--src/ARM.h4
-rw-r--r--src/MemConstants.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ARM.h b/src/ARM.h
index 65f78ab..565579a 100644
--- a/src/ARM.h
+++ b/src/ARM.h
@@ -24,6 +24,7 @@
#include "types.h"
#include "MemRegion.h"
+#include "MemConstants.h"
#ifdef GDBSTUB_ENABLED
#include "debug/GdbStub.h"
@@ -42,9 +43,6 @@ enum
RWFlags_ForceUser = (1<<21),
};
-const u32 ITCMPhysicalSize = 0x8000;
-const u32 DTCMPhysicalSize = 0x4000;
-
struct GDBArgs;
class ARMJIT;
class GPU;
diff --git a/src/MemConstants.h b/src/MemConstants.h
index ab80fab..4cf2d36 100644
--- a/src/MemConstants.h
+++ b/src/MemConstants.h
@@ -30,6 +30,8 @@ constexpr u32 NWRAMSize = 0x40000;
constexpr u32 ARM9BIOSSize = 0x1000;
constexpr u32 ARM7BIOSSize = 0x4000;
constexpr u32 DSiBIOSSize = 0x10000;
+constexpr u32 ITCMPhysicalSize = 0x8000;
+constexpr u32 DTCMPhysicalSize = 0x4000;
}
#endif // MELONDS_MEMCONSTANTS_H \ No newline at end of file