1// SPDX-License-Identifier: GPL-3.0-only
2//! Kernel logging: serial output and the [`kprint!`] macro.
3//!
4//! Authors: MarioS271
56#[cfg(target_arch = "x86_64")] mod x86_64;
7#[cfg(target_arch = "x86_64")] pub(crate) use x86_64::*;
89pub(crate) mod kprint;
10pub(crate) mod _serial;