rust-raspberrypi-OS-tutorials/03_hacky_hello_world/src/cpu.rs

17 lines
499 B
Rust
Raw Normal View History

2020-03-28 12:27:14 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
//
2021-01-01 10:28:32 +00:00
// Copyright (c) 2020-2021 Andre Richter <andre.o.richter@gmail.com>
2020-03-28 12:27:14 +00:00
//! Processor code.
#[cfg(target_arch = "aarch64")]
#[path = "_arch/aarch64/cpu.rs"]
mod arch_cpu;
mod boot;
//--------------------------------------------------------------------------------------------------
// Architectural Public Reexports
//--------------------------------------------------------------------------------------------------
pub use arch_cpu::wait_forever;