riscv: Add disassembler.
From https://github.com/anthony-coulter/riscv-disassembler. Modified slightly to pull in less headers in the h, prefix funcs.
This commit is contained in:
parent
5a71db8808
commit
77849d3eed
15 changed files with 3050 additions and 1 deletions
|
@ -1359,6 +1359,8 @@ std::string VertexDecoder::GetString(DebugShaderStringType stringType) {
|
|||
lines = DisassembleArm2((const u8 *)jitted_, jittedSize_);
|
||||
#elif PPSSPP_ARCH(X86) || PPSSPP_ARCH(AMD64)
|
||||
lines = DisassembleX86((const u8 *)jitted_, jittedSize_);
|
||||
#elif PPSSPP_ARCH(RISCV64)
|
||||
lines = DisassembleRV64((const u8 *)jitted_, jittedSize_);
|
||||
#else
|
||||
// No disassembler defined
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue