From: Robert Pengelly Date: Sat, 17 Aug 2024 11:29:01 +0000 (+0100) Subject: Fix for CRLF line endings X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=fbe5ed0c014b05cb3dfc12761e9d42d5ec963a12;p=chimaera.git Fix for CRLF line endings --- diff --git a/build/chimaera.img b/build/chimaera.img index 399d6a4..22dc4e8 100644 Binary files a/build/chimaera.img and b/build/chimaera.img differ diff --git a/build/chimaera.vhd b/build/chimaera.vhd index 05a7911..f2e832a 100644 Binary files a/build/chimaera.vhd and b/build/chimaera.vhd differ diff --git a/src/boot/freeldr/core/ll.asm b/src/boot/freeldr/core/ll.asm index c94b283..9c0c4cb 100644 --- a/src/boot/freeldr/core/ll.asm +++ b/src/boot/freeldr/core/ll.asm @@ -346,6 +346,8 @@ _load_line: and si, si jz .L12 + dec si + mov ax, word ptr [_load_line_data + 0] xor dx, dx @@ -355,6 +357,7 @@ _load_line: add ax, si adc dx, 0 + inc si div cx push es