rust-raspberrypi-OS-tutorials/14_exceptions_part2_peripheral_IRQs/src/cpu.rs

19 lines
558 B
Rust
Raw Normal View History

2020-04-06 21:17:09 +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-04-06 21:17:09 +00:00
//! Processor code.
#[cfg(target_arch = "aarch64")]
#[path = "_arch/aarch64/cpu.rs"]
mod arch_cpu;
mod boot;
2020-04-06 21:17:09 +00:00
pub mod smp;
//--------------------------------------------------------------------------------------------------
// Architectural Public Reexports
//--------------------------------------------------------------------------------------------------
pub use arch_cpu::{nop, qemu_exit_failure, qemu_exit_success, wait_forever};