From 2aa51a1992cf4fda6b1ea2ddefbdbc43944f3550 Mon Sep 17 00:00:00 2001 From: "E. C. Masloch" Date: Tue, 6 Feb 2024 20:14:04 +0100 Subject: [PATCH] boot: move cluster list to 1FE0h:2200h (128 KiB file, up to /L 0x200) 1FE0h:2200h happens to be linear 22000h. Like the memory map update to the FAT32 loaders for #127 this allows to load a file of up to 128 KiB (rounded to cluster size) with an /L parameter for SYS of up to 0x200. --- boot/boot.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/boot.asm b/boot/boot.asm index b2ae64f..9f425ce 100644 --- a/boot/boot.asm +++ b/boot/boot.asm @@ -99,7 +99,7 @@ Entry: jmp short real_start %define LOADSEG 0x0060 -%define CLUSTLIST 0x2000 ; offset of temporary buffer for FAT +%define CLUSTLIST 0x2200 ; offset of temporary buffer for FAT ; chain cluster list ; Some extra variables