spimdisasm 2.0.0-alpha.1

MIPS disassembler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-FileCopyrightText: © 2024-2025 Decompollaborate */
/* SPDX-License-Identifier: MIT */

mod compiler;
mod endian;
mod global_config;
mod gp_config;
mod macro_labels;

pub use compiler::Compiler;
pub use endian::Endian;
pub use global_config::{GlobalConfig, GlobalConfigBuilder};
pub use gp_config::GpConfig;
pub use macro_labels::MacroLabels;