You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/rust-os/2-shell/index.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
+++
2
2
transparent = true
3
-
title = "Creating a Kernel in Rust #2: Shell"
3
+
title = "Creating a Kernel in Rust #2: Shell [Work in Progress]"
4
4
description = "Creating a simple shell for our kernel to run commands and help us debug"
5
5
date = 2023-05-14
6
6
@@ -13,6 +13,8 @@ series = ["rust-os"]
13
13
14
14
This is a series of posts about my journey creating a kernel in rust. You can find the code for this project [here](https://github.com/explodingcamera/pogos/tree/part-1) and all of the posts in this series [here](/series/os-dev/).
15
15
16
+
This post isn't finished yet, but I wanted to get it out so I stop procrastinating on it. More content will follow next week.
17
+
16
18
{% end %}
17
19
18
20
Now that we have a basic kernel that can print to the screen, we can start building out some more functionality.
@@ -117,6 +119,7 @@ Now that we have our allocator, we can use it to allocate memory in our kernel.
0 commit comments