xref: /DragonOS/kernel/src/libs/font/font_type/vga8x16.rs (revision e28411791f090c421fe4b6fa5956fb1bd362a8d9)
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