From 2d6ec7457dc4540ab539c585d004dedb676bf455 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sat, 6 Feb 2021 21:14:21 -0800 Subject: Add names and descriptions for XF registers to the FIFO analyzer --- Source/Core/VideoCommon/XFStructs.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Source/Core/VideoCommon/XFStructs.h') diff --git a/Source/Core/VideoCommon/XFStructs.h b/Source/Core/VideoCommon/XFStructs.h index d6f8d48d46..25b2e5fccc 100644 --- a/Source/Core/VideoCommon/XFStructs.h +++ b/Source/Core/VideoCommon/XFStructs.h @@ -4,4 +4,10 @@ #pragma once +#include +#include + #include "VideoCommon/XFMemory.h" + +std::pair GetXFRegInfo(u32 address, u32 value); +std::pair GetXFTransferInfo(const u8* data); -- cgit v1.2.3 From 8c80369373706b2750067822d8d90a8ca719291a Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Sat, 6 Feb 2021 23:30:01 -0800 Subject: Add names and descriptions for regular XF memory --- Source/Core/VideoCommon/XFStructs.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Source/Core/VideoCommon/XFStructs.h') diff --git a/Source/Core/VideoCommon/XFStructs.h b/Source/Core/VideoCommon/XFStructs.h index 25b2e5fccc..5aac1f059b 100644 --- a/Source/Core/VideoCommon/XFStructs.h +++ b/Source/Core/VideoCommon/XFStructs.h @@ -10,4 +10,6 @@ #include "VideoCommon/XFMemory.h" std::pair GetXFRegInfo(u32 address, u32 value); +std::string GetXFMemName(u32 address); +std::string GetXFMemDescription(u32 address, u32 value); std::pair GetXFTransferInfo(const u8* data); -- cgit v1.2.3