x86/registers/
mod.rs

1// Licensed under the Apache License, Version 2.0 or the MIT License.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3// Copyright Tock Contributors 2025.
4
5// This is inspired and adapted for Tock from the [x86](https://github.com/gz/rust-x86) crate.
6
7//! Tock x86.
8
9pub mod bits32;
10pub mod controlregs;
11pub mod dtables;
12pub mod io;
13pub mod irq;
14pub mod ring;
15pub mod segmentation;
16pub mod task;
17pub mod tlb;