mirror of
https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials.git
synced 2024-11-11 07:10:59 +00:00
13 lines
249 B
Rust
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;
|