10 lines
166 B
Rust
10 lines
166 B
Rust
// Copyright (c) 2025 shibedrill
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#![no_std]
|
|
#![allow(unused_imports)]
|
|
mod arch;
|
|
pub mod registers;
|
|
pub mod syscall;
|
|
pub use arch::*;
|