working on bin selection ui

This commit is contained in:
2025-08-01 16:24:37 -06:00
parent db81470531
commit 8ca55fcdaf
11 changed files with 222 additions and 19 deletions

View File

@@ -3,6 +3,10 @@
use core::ffi::c_void;
use shared::keyboard::{KeyCode, KeyEvent, KeyState, Modifiers};
unsafe extern "C" {
fn call_abi(call: *const Syscall);
}
#[repr(C)]
pub enum Syscall {
DrawPixel { x: u32, y: u32, color: u16 },