From 88618f176d19223efae0b79f72a0fea5d1a31a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Fri, 1 Apr 2022 04:47:22 +0200 Subject: [PATCH] [BOOTSECT] ISOBOOT: Add missing trailing 0x55AA sector signature. --- boot/freeldr/bootsect/isoboot.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/freeldr/bootsect/isoboot.S b/boot/freeldr/bootsect/isoboot.S index 76861165dcb..da52eba9bfe 100644 --- a/boot/freeldr/bootsect/isoboot.S +++ b/boot/freeldr/bootsect/isoboot.S @@ -1147,8 +1147,8 @@ dapa: // Extend the size to cover one 2K-sized sector -.org 2047 - .byte 0 +.org 2046 + .word HEX(0aa55) // BootSector signature .endcode16