From a2ecab285195ff72fc2955b74f48751ab998809b Mon Sep 17 00:00:00 2001 From: Niklas Halle Date: Mon, 11 May 2020 16:41:37 +0200 Subject: crucial update --- 01_exercise/bootloader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_exercise/bootloader.c b/01_exercise/bootloader.c index fcdc0f4..c11f37e 100644 --- a/01_exercise/bootloader.c +++ b/01_exercise/bootloader.c @@ -34,7 +34,7 @@ void putc_color(char c, char color) { "int $0x10;" "inc %%dl;" // raise column by one (normally we would need to check for end of // line; respective end of screen here - for simplicity (and binary - // size) sake, leave that out - will cause bugs) + // size) sake, leave that out - could cause bugs) "mov $0x0200, %%ax;" // set cursor position "int $0x10;" ::"al"(c), "bl"(color) -- cgit v1.2.3-54-g00ecf