diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2026-03-05 21:36:52 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2026-03-05 21:36:52 +0100 |
| commit | 06fd98b7bd62eef3ca5f4934c12e600b182cdb77 (patch) | |
| tree | 855488b3b6a0179ccb645f7a1096fa10b116872a /src/kernel/io.c | |
| parent | a08957914b955eb08d85e5397403871b5f44f30d (diff) | |
still fixing
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'src/kernel/io.c')
| -rw-r--r-- | src/kernel/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/io.c b/src/kernel/io.c index 10fcac1..22a5fa3 100644 --- a/src/kernel/io.c +++ b/src/kernel/io.c @@ -7,7 +7,7 @@ volatile uint16_t* VGA = (volatile uint16_t*)0xB8000; uint16_t cursor = 0; -void RealPrint(const char* str) { +void VGA_RPrint(const char* str) { while(*str) { VGA[cursor++] = (uint8_t)(*str) | 0x0700; // white on black str++; |