Xiang Yang
Results
1
comments of
Xiang Yang
// os/src/sbi.rs const SBI_SET_TIMER: usize = 0; pub fn set_timer(timer: usize) { sbi_call(SBI_SET_TIMER, timer, 0, 0); } 文档中的代码,在最新的ch3分支中已经改为了 /// use sbi call to set timer pub fn set_timer(timer: usize) {...