mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
168 lines
5.2 KiB
C++
168 lines
5.2 KiB
C++
// Copyright (C) 2003 Dolphin Project / 2012 PPSSPP Project
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official git repository and contact information can be found at
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
#include "Common/Common.h"
|
|
|
|
#include "Core/Core.h"
|
|
#include "Core/MemMap.h"
|
|
#include "Core/Config.h"
|
|
#include "Core/ConfigValues.h"
|
|
#include "Core/Host.h"
|
|
#include "Core/Reporting.h"
|
|
|
|
#include "Core/MIPS/MIPS.h"
|
|
|
|
namespace Memory {
|
|
|
|
u8 *GetPointer(const u32 address) {
|
|
if ((address & 0x3E000000) == 0x08000000) {
|
|
// RAM
|
|
return GetPointerUnchecked(address);
|
|
} else if ((address & 0x3F800000) == 0x04000000) {
|
|
// VRAM
|
|
return GetPointerUnchecked(address);
|
|
} else if ((address & 0xBFFF0000) == 0x00010000 && (address & 0x0000FFFF) < SCRATCHPAD_SIZE) {
|
|
// Scratchpad
|
|
return GetPointerUnchecked(address);
|
|
} else if ((address & 0x3F000000) >= 0x08000000 && (address & 0x3F000000) < 0x08000000 + g_MemorySize) {
|
|
// More RAM (remasters, etc.)
|
|
return GetPointerUnchecked(address);
|
|
} else {
|
|
static bool reported = false;
|
|
if (!reported) {
|
|
Reporting::ReportMessage("Unknown GetPointer %08x PC %08x LR %08x", address, currentMIPS->pc, currentMIPS->r[MIPS_REG_RA]);
|
|
reported = true;
|
|
}
|
|
Core_MemoryException(address, currentMIPS->pc, MemoryExceptionType::WRITE_BLOCK);
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
inline void ReadFromHardware(T &var, const u32 address) {
|
|
// TODO: Figure out the fastest order of tests for both read and write (they are probably different).
|
|
if ((address & 0x3E000000) == 0x08000000) {
|
|
// RAM
|
|
var = *((const T*)GetPointerUnchecked(address));
|
|
} else if ((address & 0x3F800000) == 0x04000000) {
|
|
// VRAM
|
|
var = *((const T*)GetPointerUnchecked(address));
|
|
} else if ((address & 0xBFFF0000) == 0x00010000 && (address & 0x0000FFFF) < SCRATCHPAD_SIZE) {
|
|
// Scratchpad
|
|
var = *((const T*)GetPointerUnchecked(address));
|
|
} else if ((address & 0x3F000000) >= 0x08000000 && (address & 0x3F000000) < 0x08000000 + g_MemorySize) {
|
|
// More RAM (remasters, etc.)
|
|
var = *((const T*)GetPointerUnchecked(address));
|
|
} else {
|
|
static bool reported = false;
|
|
if (!reported) {
|
|
Reporting::ReportMessage("ReadFromHardware: Invalid address %08x near PC %08x LR %08x", address, currentMIPS->pc, currentMIPS->r[MIPS_REG_RA]);
|
|
reported = true;
|
|
}
|
|
Core_MemoryException(address, currentMIPS->pc, MemoryExceptionType::READ_WORD);
|
|
var = 0;
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
inline void WriteToHardware(u32 address, const T data) {
|
|
if ((address & 0x3E000000) == 0x08000000) {
|
|
// RAM
|
|
*(T*)GetPointerUnchecked(address) = data;
|
|
} else if ((address & 0x3F800000) == 0x04000000) {
|
|
// VRAM
|
|
*(T*)GetPointerUnchecked(address) = data;
|
|
} else if ((address & 0xBFFF0000) == 0x00010000 && (address & 0x0000FFFF) < SCRATCHPAD_SIZE) {
|
|
// Scratchpad
|
|
*(T*)GetPointerUnchecked(address) = data;
|
|
} else if ((address & 0x3F000000) >= 0x08000000 && (address & 0x3F000000) < 0x08000000 + g_MemorySize) {
|
|
// More RAM (remasters, etc.)
|
|
*(T*)GetPointerUnchecked(address) = data;
|
|
} else {
|
|
static bool reported = false;
|
|
if (!reported) {
|
|
Reporting::ReportMessage("WriteToHardware: Invalid address %08x near PC %08x LR %08x", address, currentMIPS->pc, currentMIPS->r[MIPS_REG_RA]);
|
|
reported = true;
|
|
}
|
|
Core_MemoryException(address, currentMIPS->pc, MemoryExceptionType::WRITE_WORD);
|
|
}
|
|
}
|
|
|
|
bool IsRAMAddress(const u32 address) {
|
|
if ((address & 0x3E000000) == 0x08000000) {
|
|
return true;
|
|
} else if ((address & 0x3F000000) >= 0x08000000 && (address & 0x3F000000) < 0x08000000 + g_MemorySize) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool IsScratchpadAddress(const u32 address) {
|
|
return (address & 0xBFFF0000) == 0x00010000 && (address & 0x0000FFFF) < SCRATCHPAD_SIZE;
|
|
}
|
|
|
|
u8 Read_U8(const u32 address) {
|
|
u8 value = 0;
|
|
ReadFromHardware<u8>(value, address);
|
|
return (u8)value;
|
|
}
|
|
|
|
u16 Read_U16(const u32 address) {
|
|
u16_le value = 0;
|
|
ReadFromHardware<u16_le>(value, address);
|
|
return (u16)value;
|
|
}
|
|
|
|
u32 Read_U32(const u32 address) {
|
|
u32_le value = 0;
|
|
ReadFromHardware<u32_le>(value, address);
|
|
return value;
|
|
}
|
|
|
|
u64 Read_U64(const u32 address) {
|
|
u64_le value = 0;
|
|
ReadFromHardware<u64_le>(value, address);
|
|
return value;
|
|
}
|
|
|
|
u32 Read_U8_ZX(const u32 address) {
|
|
return (u32)Read_U8(address);
|
|
}
|
|
|
|
u32 Read_U16_ZX(const u32 address) {
|
|
return (u32)Read_U16(address);
|
|
}
|
|
|
|
void Write_U8(const u8 _Data, const u32 address) {
|
|
WriteToHardware<u8>(address, _Data);
|
|
}
|
|
|
|
void Write_U16(const u16 _Data, const u32 address) {
|
|
WriteToHardware<u16_le>(address, _Data);
|
|
}
|
|
|
|
void Write_U32(const u32 _Data, const u32 address) {
|
|
WriteToHardware<u32_le>(address, _Data);
|
|
}
|
|
|
|
void Write_U64(const u64 _Data, const u32 address) {
|
|
WriteToHardware<u64_le>(address, _Data);
|
|
}
|
|
|
|
} // namespace Memory
|