rust-raspberrypi-OS-tutorials/11_virtual_memory/src/cpu.rs

13 lines
249 B
Rust
Raw Normal View History

2020-03-28 12:24:53 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
//
// Copyright (c) 2020 Andre Richter <andre.o.richter@gmail.com>
//! Processor code.
#[cfg(target_arch = "aarch64")]
#[path = "_arch/aarch64/cpu.rs"]
mod arch_cpu;
pub use arch_cpu::*;
pub mod smp;