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 08:35:01 +00:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2009-07-26 09:52:35 +00:00
|
|
|
|
2021-02-06 21:14:21 -08:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoCommon/XFMemory.h"
|
2021-02-06 21:14:21 -08:00
|
|
|
|
|
|
|
std::pair<std::string, std::string> GetXFRegInfo(u32 address, u32 value);
|
2021-02-06 23:30:01 -08:00
|
|
|
std::string GetXFMemName(u32 address);
|
|
|
|
std::string GetXFMemDescription(u32 address, u32 value);
|
2021-04-22 20:57:56 -07: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);
|