RSP: move Enter_RSP_Register_Window & UpdateRSPRegistersScreen function definition out of RSP core

This commit is contained in:
zilmar 2023-09-28 11:53:57 +09:30
parent ac3e0f83d1
commit b1240072c6
4 changed files with 6 additions and 3 deletions

View File

@ -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);

View File

@ -1 +1,4 @@
#pragma once
#pragma once
void UpdateRSPRegistersScreen(void);
void Enter_RSP_Register_Window(void);

View File

@ -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"

View File

@ -2,6 +2,7 @@
#include <stdlib.h>
#include <windows.h>
#include "Debugger/RSPRegistersUI.h"
#include "RSP Command.h"
#include "Rsp.h"
#include "breakpoint.h"