Fix: Fixing Linker and bootloader errors.

This commit is contained in:
AfonsoCMSousa
2025-11-14 22:35:01 +00:00
parent 1934e66796
commit babc45f96b
2 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
void kmain(void) {
// Kernel main function
// Set VGA memory address
unsigned short *VGA_mem = (unsigned short *)0xB8000;
volatile unsigned short *VGA_mem = (unsigned short *)0xB8000;
VGA_mem[0] = (0x07 << 8) | 'S';
VGA_mem[1] = (0x07 << 8) | 'O';