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

15 lines
371 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
int AllocateMemory(void);
void FreeMemory(void);
void SetJumpTable(uint32_t End);
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);
2023-07-13 11:39:18 +00:00
void RSP_SWV_DMEM(uint32_t Addr, uint8_t vect, uint8_t element);