| Crates.io | spq-dis |
| lib.rs | spq-dis |
| version | 0.1.4 |
| created_at | 2024-03-23 04:48:21.561016+00 |
| updated_at | 2024-03-23 04:48:21.561016+00 |
| description | SPIR-V disassembler |
| homepage | https://github.com/PENGUINLIONG/spq-rs |
| repository | https://github.com/PENGUINLIONG/spq-rs |
| max_upload_size | |
| id | 1183269 |
| size | 15,110 |
spq Disassembler (spq-dis) is a SPIR-V disassembler written in pure Rust. It is a drop-in replacement of the official disassembler spirv-dis with the same commandline arguments.
You can install spq-dis from cargo with:
cargo install spq-dis
To disassemble SPIR-V binary, you can either pass the SPIR-V file path by argument or pipe the content in.
spq-dis [INPUT].spv -o [OUTPUT].spvasm
# - or -
cat [INPUT].spv | spq-dis -o [OUTPUT].spvasm
spq-dis is a CLI tool for end users. You can also integrate the disassembler to your application from the library crate spq-spvasm.
This project is licensed under either of
at your option.