mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 00:04:49 +02: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); |