RSP: move Enter_RSP_Register_Window & UpdateRSPRegistersScreen function definition out of RSP core
This commit is contained in:
parent
ac3e0f83d1
commit
b1240072c6
|
@ -95,9 +95,7 @@ extern char * GPR_Strings[32];
|
|||
: (Reg) == 15 ? "DP TMEM load counter" \
|
||||
: "Unknown Register"
|
||||
|
||||
void Enter_RSP_Register_Window(void);
|
||||
void InitilizeRSPRegisters(void);
|
||||
void UpdateRSPRegistersScreen(void);
|
||||
|
||||
int64_t AccumulatorGet(uint8_t el);
|
||||
void AccumulatorSet(uint8_t el, int64_t Accumulator);
|
||||
|
|
|
@ -1 +1,4 @@
|
|||
#pragma once
|
||||
#pragma once
|
||||
|
||||
void UpdateRSPRegistersScreen(void);
|
||||
void Enter_RSP_Register_Window(void);
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include "Debugger/RSPDebuggerUI.h"
|
||||
#include "Debugger/RSPRegistersUI.h"
|
||||
#include "RSP Command.h"
|
||||
#include "Rsp.h"
|
||||
#include "breakpoint.h"
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <windows.h>
|
||||
|
||||
#include "Debugger/RSPRegistersUI.h"
|
||||
#include "RSP Command.h"
|
||||
#include "Rsp.h"
|
||||
#include "breakpoint.h"
|
||||
|
|
Loading…
Reference in New Issue