kernel/arch/
mod.rs

1//! Architecture-specific code for Scarlet kernel
2//!
3//! This module contains architecture-specific implementations and definitions
4//! for the Scarlet kernel. Each architecture has its own set of files that
5//! implement the necessary functionality.
6//!
7
8#[cfg(target_arch = "riscv64")]
9pub mod riscv64;
10#[cfg(target_arch = "riscv64")]
11pub use riscv64::*;