summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiklas Halle <niklas@niklashalle.net>2020-05-11 16:41:37 +0200
committerNiklas Halle <niklas@niklashalle.net>2020-05-11 16:41:37 +0200
commita2ecab285195ff72fc2955b74f48751ab998809b (patch)
treee93265927c6cf2e35c1232db5909e6ce84e4f780
parent3b2c40e7f742b043803c97fbc11043b1f50b40f4 (diff)
downloadbetriebssysteme-a2ecab285195ff72fc2955b74f48751ab998809b.tar.gz
betriebssysteme-a2ecab285195ff72fc2955b74f48751ab998809b.zip
crucial update
-rw-r--r--01_exercise/bootloader.c2
1 files changed, 1 insertions, 1 deletions
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)