2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-07-26 09:52:35 +00:00
|
|
|
|
2021-02-07 05:14:21 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/XFMemory.h"
|
2021-02-07 05:14:21 +00:00
|
|
|
|
|
|
|
std::pair<std::string, std::string> GetXFRegInfo(u32 address, u32 value);
|
2021-02-07 07:30:01 +00:00
|
|
|
std::string GetXFMemName(u32 address);
|
|
|
|
std::string GetXFMemDescription(u32 address, u32 value);
|
2021-04-23 03:57:56 +00:00
|
|
|
std::pair<std::string, std::string> GetXFTransferInfo(u16 base_address, u8 transfer_size,
|
|
|
|
const u8* data);
|
|
|
|
std::pair<std::string, std::string> GetXFIndexedLoadInfo(CPArray array, u32 index, u16 address,
|
|
|
|
u8 size);
|