2015-05-17 11:54:23 +02:00
|
|
|
#include "dllmain.h"
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT uint32_t PeekMemory(uint32_t* address, uint32_t length, intptr_t bank) {
|
2015-05-17 11:54:23 +02:00
|
|
|
uint32_t bankAddress, bankSize;
|
|
|
|
|
bankAddress = *(uint32_t*)(bank + 4);
|
|
|
|
|
bankSize = *(uint32_t*)(bank + 8);
|
|
|
|
|
|
|
|
|
|
// Limit reading to bank size.
|
|
|
|
|
length = (length > bankSize ? bankSize : length);
|
|
|
|
|
|
|
|
|
|
for (uint32_t offset = 0; offset < length; offset++) {
|
|
|
|
|
*(int32_t*)(bankAddress + offset) = *(address + offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PeekMemory=_PeekMemory@12")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT uint32_t PokeMemory(uint32_t address, uint32_t length, intptr_t bank) {
|
2015-05-17 11:54:23 +02:00
|
|
|
uint32_t bankAddress, bankSize;
|
|
|
|
|
bankAddress = *(uint32_t*)(bank + 4);
|
|
|
|
|
bankSize = *(uint32_t*)(bank + 8);
|
|
|
|
|
|
|
|
|
|
// Limit reading to bank size.
|
|
|
|
|
length = (length > bankSize ? bankSize : length);
|
|
|
|
|
|
|
|
|
|
for (uint32_t offset = 0; offset < length; offset++) {
|
|
|
|
|
*(int32_t*)(address + offset) = *(int32_t*)(bankAddress + offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PokeMemory=_PokeMemory@12")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT int8_t PeekMemoryByte(uint32_t* address) {
|
2015-05-17 11:54:23 +02:00
|
|
|
return *(int8_t*)address;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PeekMemoryByte=_PeekMemoryByte@4")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT void PokeMemoryByte(uint32_t* address, int8_t value) {
|
2015-05-17 11:54:23 +02:00
|
|
|
*(int8_t*)address = value;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PokeMemoryByte=_PokeMemoryByte@8")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT int16_t PeekMemoryShort(uint32_t* address) {
|
2015-05-17 11:54:23 +02:00
|
|
|
return *(int16_t*)address;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PeekMemoryShort=_PeekMemoryShort@4")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT void PokeMemoryShort(uint32_t* address, int16_t value) {
|
2015-05-17 11:54:23 +02:00
|
|
|
*(int16_t*)address = value;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PokeMemoryShort=_PokeMemoryShort@8")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT int32_t PeekMemoryInt(uint32_t* address) {
|
2015-05-17 11:54:23 +02:00
|
|
|
return *(int32_t*)address;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PeekMemoryInt=_PeekMemoryInt@4")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT void PokeMemoryInt(uint32_t* address, int32_t value) {
|
2015-05-17 11:54:23 +02:00
|
|
|
*(int32_t*)address = value;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PokeMemoryInt=_PokeMemoryInt@8")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT float_t PeekMemoryFloat(uint32_t* address) {
|
2015-05-17 11:54:23 +02:00
|
|
|
return *(float_t*)address;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PeekMemoryFloat=_PeekMemoryFloat@4")
|
|
|
|
|
|
2015-06-06 14:06:52 +02:00
|
|
|
DLL_EXPORT void PokeMemoryFloat(uint32_t* address, float_t value) {
|
2015-05-17 11:54:23 +02:00
|
|
|
*(float_t*)address = value;
|
|
|
|
|
}
|
|
|
|
|
#pragma comment(linker, "/EXPORT:PokeMemoryFloat=_PokeMemoryFloat@8")
|
|
|
|
|
|