1// SPDX-License-Identifier: GPL-3.0-only 2//! Basic (pre-heap) screen output: framebuffer wrapper and PSF2 font renderer. 3//! 4//! Authors: MarioS271 5 6pub(crate) mod framebuffer; 7pub(crate) mod font;