pollex/arm32/thumb/
mod.rs

1// Copyright 2024-2025 Gabriel Bjørnager Jensen.
2//
3// This Source Code Form is subject to the terms of
4// the Mozilla Public License, version 2.0. If a
5// copy of the MPL was not distributed with this
6// file, you can obtain one at:
7// <https://mozilla.org/MPL/2.0/>.
8
9//! Thumb-related facilities.
10
11mod instruction;
12mod low_register;
13mod low_register_list;
14mod low_register_list_iter;
15mod opcode;
16mod tag;
17
18pub use instruction::Instruction;
19pub use low_register::LowRegister;
20pub use low_register_list::LowRegisterList;
21pub use low_register_list_iter::LowRegisterListIter;
22pub use opcode::Opcode;
23pub use tag::Tag;