x86emu/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#![expect(missing_docs)]
5#![forbid(unsafe_code)]
6
7mod cpu;
8mod emulator;
9mod registers;
10
11pub use cpu::Cpu;
12pub use emulator::AlignmentMode;
13pub use emulator::Emulator;
14pub use emulator::Error;
15pub use emulator::MAX_REP_LOOPS;
16pub use emulator::fast_path;
17pub use registers::Gp;
18pub use registers::GpSize;
19pub use registers::RegisterIndex;
20pub use registers::Segment;