print syscall

This commit is contained in:
2025-08-29 15:05:19 -06:00
parent f3c67beb00
commit 1bbd988ef7
4 changed files with 26 additions and 1 deletions

View File

@@ -25,4 +25,8 @@ pub enum Syscall {
pixels: *const Pixel<Rgb565>,
len: usize,
},
Print {
msg: *const u8,
len: usize,
},
}