ch4 ok on qemu/k210 && Remove some comments.

This commit is contained in:
Yifan Wu 2020-12-08 01:35:08 +08:00
parent 485db04a2b
commit 9e861c2819
8 changed files with 0 additions and 48 deletions

View file

@ -10,7 +10,6 @@ use fs::*;
use process::*;
pub fn syscall(syscall_id: usize, args: [usize; 3]) -> isize {
//println!("into syscall!");
match syscall_id {
SYSCALL_WRITE => sys_write(args[0], args[1] as *const u8, args[2]),
SYSCALL_EXIT => sys_exit(args[0] as i32),