1 use crate::libs::font::FontDesc; 2 3 pub const FONT_VGA_8X16: FontDesc = FontDesc { 4 index: 1, 5 name: "VGA8x16", 6 width: 8, 7 height: 16, 8 char_count: 256, 9 data: include_bytes!("../bin/VGA_8X16.bytes"), 10 }; 11