2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-03-07 09:35:01 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2009-07-26 11:52:35 +02:00
|
|
|
|
2021-02-07 06:14:21 +01:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "VideoCommon/XFMemory.h"
|
2021-02-07 06:14:21 +01:00
|
|
|
|
|
|
|
std::pair<std::string, std::string> GetXFRegInfo(u32 address, u32 value);
|
2021-02-07 08:30:01 +01:00
|
|
|
std::string GetXFMemName(u32 address);
|
|
|
|
std::string GetXFMemDescription(u32 address, u32 value);
|
2021-04-23 05:57:56 +02: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);
|