From b2e3637faa8df2cdb5d2e9fb3a041f955e4afa62 Mon Sep 17 00:00:00 2001 From: 0xF0D0 Date: Fri, 10 Nov 2017 19:17:17 +0900 Subject: [PATCH 1/2] add name to contributor list Signed-off-by: 0xF0D0 --- contributors.md | 1 + 1 file changed, 1 insertion(+) diff --git a/contributors.md b/contributors.md index 446cb6d..cdecae5 100644 --- a/contributors.md +++ b/contributors.md @@ -110,3 +110,4 @@ Thank you to all contributors: * [JB Cayrou](https://github.com/jbcayrou) * [Cornelius Diekmann](https://github.com/diekmann) * [Andrés Rojas](https://github.com/c0r3dump3d) +* [Beomsu Kim](https://github.com/0xF0D0) From 06bc4a8f6aa8cc66bfa3536ab401dbd65ef9aae4 Mon Sep 17 00:00:00 2001 From: 0xF0D0 Date: Fri, 10 Nov 2017 19:17:52 +0900 Subject: [PATCH 2/2] typo fixed (0bB800 -> 0xb800) Signed-off-by: 0xF0D0 --- Booting/linux-bootstrap-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Booting/linux-bootstrap-3.md b/Booting/linux-bootstrap-3.md index 6cb565a..c454afc 100644 --- a/Booting/linux-bootstrap-3.md +++ b/Booting/linux-bootstrap-3.md @@ -139,7 +139,7 @@ After this, the `store_mode_params` checks the current video mode and sets the ` 0xB800:0x0000 32 Kb Color Text Video Memory ``` -So we set the `video_segment` variable to `0xb000` if the current video mode is MDA, HGC, or VGA in monochrome mode and to `0bB800` if the current video mode is in color mode. After setting up the address of the video segment, font size needs to be stored in `boot_params.screen_info.orig_video_points` with: +So we set the `video_segment` variable to `0xb000` if the current video mode is MDA, HGC, or VGA in monochrome mode and to `0xb800` if the current video mode is in color mode. After setting up the address of the video segment, font size needs to be stored in `boot_params.screen_info.orig_video_points` with: ```C set_fs(0);