summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-04-07 12:37:56 -0400
committerFreya Murphy <freya@freyacat.org>2025-04-07 12:37:56 -0400
commit7fd3d3a1b633b733763e0f4aa9f94cffada67859 (patch)
treed24803b2c865ab910193ad91cf15058ce2256906 /kernel
parentmodify gdt (diff)
downloadcomus-7fd3d3a1b633b733763e0f4aa9f94cffada67859.tar.gz
comus-7fd3d3a1b633b733763e0f4aa9f94cffada67859.tar.bz2
comus-7fd3d3a1b633b733763e0f4aa9f94cffada67859.zip
fmt
Diffstat (limited to 'kernel')
-rw-r--r--kernel/drivers/tty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/drivers/tty.c b/kernel/drivers/tty.c
index 20a8f14..5a231cd 100644
--- a/kernel/drivers/tty.c
+++ b/kernel/drivers/tty.c
@@ -9,7 +9,7 @@
static const uint8_t width = 80;
static const uint8_t height = 25;
-static volatile uint16_t *buffer = (uint16_t*)VGA_ADDR;
+static volatile uint16_t *buffer = (uint16_t *)VGA_ADDR;
// position
static uint32_t x = 0, y = 0;