Added MapType::Linear for framebuffer mapping & cargo fmt
This commit is contained in:
parent
4022cc3ed7
commit
4430e86d5a
12 changed files with 47 additions and 65 deletions
|
@ -31,18 +31,18 @@ const SYSCALL_EVENT_GET: usize = 3000;
|
|||
const SYSCALL_KEY_PRESSED: usize = 3001;
|
||||
|
||||
mod fs;
|
||||
mod gui;
|
||||
mod input;
|
||||
mod process;
|
||||
mod sync;
|
||||
mod thread;
|
||||
mod gui;
|
||||
mod input;
|
||||
|
||||
use fs::*;
|
||||
use gui::*;
|
||||
use input::*;
|
||||
use process::*;
|
||||
use sync::*;
|
||||
use thread::*;
|
||||
use gui::*;
|
||||
use input::*;
|
||||
|
||||
pub fn syscall(syscall_id: usize, args: [usize; 3]) -> isize {
|
||||
match syscall_id {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue