summaryrefslogtreecommitdiffstats
path: root/01_exercise/bootloader.c
diff options
context:
space:
mode:
Diffstat (limited to '01_exercise/bootloader.c')
-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)