Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/attic/PsxHawk.Core/dis.h
2 views
1
/*
2
this disassembler is courtesy of mednafen
3
*/
4
5
#pragma once
6
7
#include <string>
8
#include "types.h"
9
10
namespace MDFN_IEN_PSX
11
{
12
13
std::string DisassembleMIPS(u32 PC, u32 instr);
14
15
}
16
17