aboutsummaryrefslogtreecommitdiff
path: root/src/ARM.h
diff options
context:
space:
mode:
authorJesse Talavera <jesse@jesse.tg>2023-12-12 05:07:22 -0500
committerGitHub <noreply@github.com>2023-12-12 11:07:22 +0100
commit9bfc9c08ffe88de4b54734d6fd03182c0a51e181 (patch)
tree28a9177f377f6ab85f9aabc54c3a523fd7d610ff /src/ARM.h
parent2cba2e783a2ef3a83b7d8bf0cb6e42a6298edbf6 (diff)
Sprinkle `const` around where appropriate (#1909)
* Sprinkle `const` around where appropriate - This will make it easier to use `NDS` objects in `const` contexts (e.g. `const` parameters or methods) * Remove the `const` qualifier on `DSi_DSP::DSPRead16` - MMIO reads can be non-pure, so this may not be `const` in the future
Diffstat (limited to 'src/ARM.h')
-rw-r--r--src/ARM.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ARM.h b/src/ARM.h
index 565579a..1e0b71b 100644
--- a/src/ARM.h
+++ b/src/ARM.h
@@ -80,7 +80,7 @@ public:
virtual void ExecuteJIT() = 0;
#endif
- bool CheckCondition(u32 code)
+ bool CheckCondition(u32 code) const
{
if (code == 0xE) return true;
if (ConditionTable[code] & (1 << (CPSR>>28))) return true;
@@ -109,7 +109,7 @@ public:
if (v) CPSR |= 0x10000000;
}
- inline bool ModeIs(u32 mode)
+ inline bool ModeIs(u32 mode) const
{
u32 cm = CPSR & 0x1f;
mode &= 0x1f;
@@ -315,7 +315,7 @@ public:
void ICacheInvalidateAll();
void CP15Write(u32 id, u32 val);
- u32 CP15Read(u32 id);
+ u32 CP15Read(u32 id) const;
u32 CP15Control;