34 lines
804 B
Rust
34 lines
804 B
Rust
// Copyright (c) 2025 shibedrill
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#[cfg(not(any(
|
|
target_arch = "x86_64",
|
|
target_arch = "aarch64",
|
|
target_arch = "riscv64",
|
|
target_arch = "loongarch64"
|
|
)))]
|
|
compile_error!(
|
|
"Gila does not support compiling for this architecture! Supported architectures are: x86_64, aarch64, riscv64, loongarch64"
|
|
);
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub mod x86_64;
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub use x86_64::asm;
|
|
pub use x86_64::startup;
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
pub mod aarch64;
|
|
#[cfg(target_arch = "aarch64")]
|
|
pub use aarch64::asm;
|
|
|
|
#[cfg(target_arch = "riscv64")]
|
|
pub mod riscv64;
|
|
#[cfg(target_arch = "riscv64")]
|
|
pub use riscv64::asm;
|
|
|
|
#[cfg(target_arch = "loongarch64")]
|
|
pub mod loongarch64;
|
|
#[cfg(target_arch = "loongarch64")]
|
|
pub use loongarch64::asm;
|