Skip to content

Commit

Permalink
Fix typo (#12)
Browse files Browse the repository at this point in the history
* Update README.md

* Fix typo
  • Loading branch information
r1ru committed Feb 19, 2024
1 parent 8fdcf9d commit 163824f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ WasmOS is a microkernel developed based on [HinaOS](https://github.com/nuta/micr
It implements a WebAssembly (Wasm) "userland", and all Wasm binaries are executed in Ring 0 using [WAMR](https://github.com/bytecodealliance/wasm-micro-runtime).
See my [blog](https://medium.com/@r1ru/wasmos-a-proof-of-concept-microkernel-that-runs-webassembly-natively-850043cad121) for more details.

![wasmos](https://github.com/RI5255/wasmos/assets/92210252/9bccd926-6260-4d1c-947a-68df5e452d7d)
![WasmOS_shell](https://github.com/r1ru/WasmOS/assets/92210252/67e978a4-9bd9-4d6f-8f15-8efc8de60989)


## Quickstart
First clone this repository, remember to add the --recursive option as Wasm uses [WAMR](https://github.com/bytecodealliance/wasm-micro-runtime) as a submodule.
Expand All @@ -28,7 +29,6 @@ If it starts successfully, the shell server is launched and you can execute foll

```
start hello # Run a helllo-world program
start hello_wasmvm # Run a program that uses the system call sys_wasmvm, which generates tasks from Wasm binaries
start wasm_ping # Run a Wasm binary that uses message passing APIs
start wasm_webapi # Run a toy web server (Wasm binary). Access localhost:1234 to see the page
```
Expand Down
2 changes: 1 addition & 1 deletion kernel/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ __noreturn static void idle_task(void) {
// 0番目のCPUのブート処理: カーネルと最初のタスク (VMサーバ) を初期化した後にアイドルタスク
// として動作する。
void kernel_main(struct bootinfo *bootinfo) {
printf("Booting WASMOS...\n");
printf("Booting WasmOS...\n");
memory_init(bootinfo);
arch_init();
task_init_percpu();
Expand Down

0 comments on commit 163824f

Please sign in to comment.