17 lines
371 B
Markdown
17 lines
371 B
Markdown
- 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.
|
|
```rust
|
|
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"));
|
|
```
|