spimdisasm 2.0.0-alpha.1

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

#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub(crate) struct InternalSymDisplSettings {
    migrate: bool,
}

impl InternalSymDisplSettings {
    pub fn new(migrate: bool) -> Self {
        Self { migrate }
    }

    pub fn migrate(&self) -> bool {
        self.migrate
    }
}