aboutsummaryrefslogtreecommitdiff
path: root/src/CP15.cpp
diff options
context:
space:
mode:
authorStapleButter <thetotalworm@gmail.com>2018-12-11 16:24:55 +0100
committerStapleButter <thetotalworm@gmail.com>2018-12-11 16:24:55 +0100
commitbeb092f93eacde92e300c15cbbc0c4081d2676d0 (patch)
tree1bd73d0c3812efc59b1321d2bf9c86279c84df1a /src/CP15.cpp
parent3dd8c7b152109df09f2f1bcecc52b05ecf6f9ead (diff)
change where audio/joystick are inited, attempting to fix potential COM initialize issues
Diffstat (limited to 'src/CP15.cpp')
-rw-r--r--src/CP15.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CP15.cpp b/src/CP15.cpp
index a23629a..a29601c 100644
--- a/src/CP15.cpp
+++ b/src/CP15.cpp
@@ -82,13 +82,13 @@ void ARMv5::UpdateDTCMSetting()
{
DTCMBase = DTCMSetting & 0xFFFFF000;
DTCMSize = 0x200 << ((DTCMSetting >> 1) & 0x1F);
- printf("DTCM [%08X] enabled at %08X, size %X\n", DTCMSetting, DTCMBase, DTCMSize);
+ //printf("DTCM [%08X] enabled at %08X, size %X\n", DTCMSetting, DTCMBase, DTCMSize);
}
else
{
DTCMBase = 0xFFFFFFFF;
DTCMSize = 0;
- printf("DTCM disabled\n");
+ //printf("DTCM disabled\n");
}
}
@@ -97,12 +97,12 @@ void ARMv5::UpdateITCMSetting()
if (CP15Control & (1<<18))
{
ITCMSize = 0x200 << ((ITCMSetting >> 1) & 0x1F);
- printf("ITCM [%08X] enabled at %08X, size %X\n", ITCMSetting, 0, ITCMSize);
+ //printf("ITCM [%08X] enabled at %08X, size %X\n", ITCMSetting, 0, ITCMSize);
}
else
{
ITCMSize = 0;
- printf("ITCM disabled\n");
+ //printf("ITCM disabled\n");
}
}