summaryrefslogtreecommitdiff
path: root/libpcsxcore/psxmem.c
diff options
context:
space:
mode:
authorSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-05-06 09:34:14 +0000
committerSND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-05-06 09:34:14 +0000
commit8f4da5b653f91eaca82f02565a9932ae0ef371f8 (patch)
treed3a30f58209291ab48b61ab2ce987ad690270253 /libpcsxcore/psxmem.c
parentdf4b58043ba0788d11637f44598978ef98e2d0bd (diff)
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@66613 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'libpcsxcore/psxmem.c')
-rw-r--r--libpcsxcore/psxmem.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libpcsxcore/psxmem.c b/libpcsxcore/psxmem.c
index f306b3a8..6e615cfe 100644
--- a/libpcsxcore/psxmem.c
+++ b/libpcsxcore/psxmem.c
@@ -157,7 +157,7 @@ u8 psxMemRead8(u32 mem) {
p = (char *)(psxMemRLUT[t]);
if (p != NULL) {
if (Config.Debug)
- DebugCheckBP((mem & 0xffffff) | 0x80000000, R1);
+ DebugCheckBP((mem & 0xffffff) | 0x80000000, BR1);
return *(u8 *)(p + (mem & 0xffff));
} else {
#ifdef PSXMEM_LOG
@@ -186,7 +186,7 @@ u16 psxMemRead16(u32 mem) {
p = (char *)(psxMemRLUT[t]);
if (p != NULL) {
if (Config.Debug)
- DebugCheckBP((mem & 0xffffff) | 0x80000000, R2);
+ DebugCheckBP((mem & 0xffffff) | 0x80000000, BR2);
return SWAPu16(*(u16 *)(p + (mem & 0xffff)));
} else {
#ifdef PSXMEM_LOG
@@ -215,7 +215,7 @@ u32 psxMemRead32(u32 mem) {
p = (char *)(psxMemRLUT[t]);
if (p != NULL) {
if (Config.Debug)
- DebugCheckBP((mem & 0xffffff) | 0x80000000, R4);
+ DebugCheckBP((mem & 0xffffff) | 0x80000000, BR4);
return SWAPu32(*(u32 *)(p + (mem & 0xffff)));
} else {
#ifdef PSXMEM_LOG
@@ -244,7 +244,7 @@ void psxMemWrite8(u32 mem, u8 value) {
p = (char *)(psxMemWLUT[t]);
if (p != NULL) {
if (Config.Debug)
- DebugCheckBP((mem & 0xffffff) | 0x80000000, W1);
+ DebugCheckBP((mem & 0xffffff) | 0x80000000, BW1);
*(u8 *)(p + (mem & 0xffff)) = value;
#ifdef PSXREC
psxCpu->Clear((mem & (~3)), 1);
@@ -275,7 +275,7 @@ void psxMemWrite16(u32 mem, u16 value) {
p = (char *)(psxMemWLUT[t]);
if (p != NULL) {
if (Config.Debug)
- DebugCheckBP((mem & 0xffffff) | 0x80000000, W2);
+ DebugCheckBP((mem & 0xffffff) | 0x80000000, BW2);
*(u16 *)(p + (mem & 0xffff)) = SWAPu16(value);
#ifdef PSXREC
psxCpu->Clear((mem & (~3)), 1);
@@ -307,7 +307,7 @@ void psxMemWrite32(u32 mem, u32 value) {
p = (char *)(psxMemWLUT[t]);
if (p != NULL) {
if (Config.Debug)
- DebugCheckBP((mem & 0xffffff) | 0x80000000, W4);
+ DebugCheckBP((mem & 0xffffff) | 0x80000000, BW4);
*(u32 *)(p + (mem & 0xffff)) = SWAPu32(value);
#ifdef PSXREC
psxCpu->Clear(mem, 1);