Compare commits

..

2 Commits
ch9 ... main

Author SHA1 Message Date
Yu Chen 21bae8b034 add cargo fmt in Makefile, and exec make fmt
3 years ago
Yu Chen a773a977e7 udpate README
3 years ago

@ -190,7 +190,6 @@ $ make run BOARD=k210
Type `Ctrl+]` to disconnect from K210.
## Show runtime debug info of OS kernel version
The branch of ch9-log contains a lot of debug info. You could try to run rcore tutorial
for understand the internal behavior of os kernel.
@ -229,7 +228,6 @@ $ make run
[KERN] mm::frame_allocator::lazy_static!FRAME_ALLOCATOR begin
......
```
## Rustdoc
Currently it can only help you view the code since only a tiny part of the code has been documented.

@ -24,9 +24,7 @@ impl BlockDevice for BlockFile {
assert_eq!(file.write(buf).unwrap(), BLOCK_SZ, "Not a complete block!");
}
fn handle_irq(&self) {
unimplemented!();
}
fn handle_irq(&self) { unimplemented!(); }
}
fn main() {

Loading…
Cancel
Save