can dynamically load applications

This commit is contained in:
2025-09-07 18:13:55 -06:00
parent 8dad3ce6bb
commit 70ecbcafc3
8 changed files with 198 additions and 119 deletions

View File

@@ -14,7 +14,7 @@ use shared::keyboard::{KeyCode, KeyEvent, KeyState, Modifiers};
pub type EntryFn = fn() -> Pin<Box<dyn Future<Output = ()>>>;
#[unsafe(no_mangle)]
#[unsafe(link_section = ".userapp")]
#[unsafe(link_section = ".user_reloc")]
pub static mut CALL_ABI_TABLE: [usize; CallAbiTable::COUNT] = [0; CallAbiTable::COUNT];
#[repr(usize)]