更改系统调用的寄存器传参顺序 (#409)

This commit is contained in:
LoGin
2023-10-24 16:40:49 +08:00
committed by GitHub
parent 40314b30ab
commit f4082b86b1
16 changed files with 50 additions and 56 deletions

View File

@ -586,7 +586,7 @@ out:;
*/
int shell_cmd_reboot(int argc, char **argv)
{
return syscall_invoke(SYS_REBOOT, 0, 0, 0, 0, 0, 0, 0, 0);
return syscall_invoke(SYS_REBOOT, 0, 0, 0, 0, 0, 0);
}
int shell_cmd_free(int argc, char **argv)