updated some doc stuff

This commit is contained in:
Bryan McShea
2024-01-26 23:07:51 -05:00
parent ae53913fc2
commit 260c5c223a
2 changed files with 5 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
// stolen from https://osblog.stephenmarz.com/index.html chapter 3 which I'm prolly gonna start
// following for now bc don't wanna learn x86_64 :)
use crate::{ use crate::{
arch::{csr::{self, satp}, wait}, fdt::print_mem_layout, println arch::csr::{self, satp},
fdt::print_mem_layout,
println,
}; };
use super::asm::linker_static; use super::asm::linker_static;

View File

@@ -7,3 +7,5 @@ or lose motivation :sunglasses:
either way I at least want to learn OS / cpu arch fundamentals through this either way I at least want to learn OS / cpu arch fundamentals through this
edit: learning from [this](https://osblog.stephenmarz.com/index.html) now bc don't wanna learn x86 & already know riscv basics