mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-14 04:28:42 +00:00
10 lines
269 B
C++
10 lines
269 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
// Mostly just a toy to understand SPIR-V better. Not an accurate SPIR-V disassembler,
|
|
// and the result will not reassemble.
|
|
|
|
bool DisassembleSPIRV(std::vector<uint32_t> spirv, std::string *output); |