rust-raspberrypi-OS-tutorials/06_drivers_gpio_uart/src/cpu.rs
2020-03-28 13:26:38 +01:00

13 lines
249 B
Rust

// 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;