project64/Source/Project64-rsp-core/cpu/RspMemory.h

18 lines
301 B
C
Raw Normal View History

2023-08-16 23:29:22 +00:00
#pragma once
#include <Project64-rsp-core/cpu/RspTypes.h>
2016-01-27 09:11:59 +00:00
enum
{
MaxMaps = 32
};
int AllocateMemory(void);
void FreeMemory(void);
2016-01-27 09:11:59 +00:00
extern uint8_t *RecompCode, *RecompCodeSecondary, *RecompPos;
2016-01-27 09:11:59 +00:00
extern void ** JumpTable;
extern uint32_t Table;
2016-01-27 09:11:59 +00:00
void RSP_LW_IMEM(uint32_t Addr, uint32_t * Value);