Increased size to 32 KiB
diff --git a/bootsect/bootsect.asm b/bootsect/bootsect.asm
index 07e3a8e8..29a1b648 100644
--- a/bootsect/bootsect.asm
+++ b/bootsect/bootsect.asm
@@ -74,7 +74,7 @@ dw 0xaa55
mov ax, 2
mov ebx, 0x8000
-mov cx, 14
+mov cx, 62
call read_sectors
jc err_reading_disk
diff --git a/linker.ld b/linker.ld
index 6eb523fd..8c5cc720 100644
--- a/linker.ld
+++ b/linker.ld
@@ -14,7 +14,6 @@ SECTIONS
.data : {
KEEP(*(.data*))
KEEP(*(.bss*))
- . += 7168 - (. - bootsect_begin);
+ . += 31744 - (. - bootsect_begin);
}
-
}
