Starts adding fontplate for VGA

This commit is contained in:
2025-11-13 10:26:37 +01:00
parent 3044a54a09
commit 7bc23ce211
7 changed files with 170 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
extern crate proc_macro;
mod image;
use proc_macro::TokenStream;
use quote::{format_ident, quote};
@@ -32,3 +33,8 @@ pub fn define_regs(_input: TokenStream) -> TokenStream {
tokens.into()
}
#[proc_macro]
pub fn include_font_plate(input: TokenStream) -> TokenStream {
image::include_font_plate_impl(input)
}