diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-07 12:37:56 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-07 12:37:56 -0400 |
commit | 7fd3d3a1b633b733763e0f4aa9f94cffada67859 (patch) | |
tree | d24803b2c865ab910193ad91cf15058ce2256906 | |
parent | modify gdt (diff) | |
download | comus-7fd3d3a1b633b733763e0f4aa9f94cffada67859.tar.gz comus-7fd3d3a1b633b733763e0f4aa9f94cffada67859.tar.bz2 comus-7fd3d3a1b633b733763e0f4aa9f94cffada67859.zip |
fmt
-rw-r--r-- | kernel/drivers/tty.c | 2 |
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; |