add gui in os

This commit is contained in:
Yu Chen 2022-06-18 15:23:16 +08:00
parent 10e1c57b7d
commit 07029a2e5f
20 changed files with 649 additions and 4 deletions

View file

@ -30,11 +30,13 @@ mod fs;
mod process;
mod sync;
mod thread;
mod gui;
use fs::*;
use process::*;
use sync::*;
use thread::*;
pub use gui::PAD;
pub fn syscall(syscall_id: usize, args: [usize; 3]) -> isize {
match syscall_id {