rabbitizer 2.0.0-alpha.8

MIPS instruction decoder
Documentation
/* SPDX-FileCopyrightText: © 2024-2025 Decompollaborate */
/* SPDX-License-Identifier: MIT */

mod decoding_flags;
mod opcode;
mod opcode_category;
mod opcode_category_descriptor;
mod opcode_decoder;
mod opcode_descriptor;
mod opcode_validity_gate;

pub(crate) use decoding_flags::DecodingFlags;

pub(crate) use crate::generated::OPCODE_CATEGORIES;
pub use crate::generated::{Opcode, OpcodeCategory, OPCODES};

pub(crate) use opcode::OPCODE_COUNT;
pub(crate) use opcode_category::OPCODE_CATEGORY_COUNT;
pub use opcode_category_descriptor::OpcodeCategoryDescriptor;
pub(crate) use opcode_decoder::OpcodeDecoder;
pub use opcode_descriptor::OpcodeDescriptor;
pub(crate) use opcode_validity_gate::OpcodeValidityGate;