arch_ops/lib.rs
1#![deny(warnings, unsafe_code)]
2#![allow(unknown_lints, renamed_and_removed_lints)]
3
4pub mod traits;
5
6pub mod disasm;
7
8#[cfg(feature = "w65")]
9pub mod w65;
10
11#[cfg(feature = "m6502")]
12pub mod m6502;
13
14#[cfg(feature = "x86")]
15pub mod x86;
16
17#[cfg(feature = "clever")]
18pub mod clever;
19
20#[cfg(test)]
21pub(crate) mod test;