Files
2025-02-27 01:16:07 +00:00

371 B

  • contains all proc macros for building the kernel

Current Features

font importer:

  • a macro that takes a filename to a font file and turns it into a font.
pub struct Font {
	width: usize,
	height: usize,
	length: u16,
	data: [[u8; 16]; 512],
}

pub static FONT_CP850_8X16: Font = 
	Font::new(include_font!("./libk/resources/font/cp850-8x16.psf"));