From 54ad8ae7921d2ae9cc29a80c6aab6838a2a2a413 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 2 Sep 2019 15:47:03 +0200 Subject: [PATCH] Show codepage 437 instead of 737 in Minimal Rust Kernel --- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md index 6efa02aa..062b2e5d 100644 --- a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md +++ b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md @@ -299,7 +299,7 @@ The easiest way to print text to the screen at this stage is the [VGA text buffe [VGA text buffer]: https://en.wikipedia.org/wiki/VGA-compatible_text_mode -![screen output for common ASCII characters](https://upload.wikimedia.org/wikipedia/commons/6/6d/Codepage-737.png) +![screen output for common ASCII characters](https://upload.wikimedia.org/wikipedia/commons/f/f8/Codepage-437.png) We will discuss the exact layout of the VGA buffer in the next post, where we write a first small driver for it. For printing “Hello World!”, we just need to know that the buffer is located at address `0xb8000` and that each character cell consists of an ASCII byte and a color byte.