https://git.reactos.org/?p=reactos.git;a=commitdiff;h=88618f176d19223efae0b79f72a0fea5d1a31a4e

commit 88618f176d19223efae0b79f72a0fea5d1a31a4e
Author:     Hermès Bélusca-Maïto <[email protected]>
AuthorDate: Fri Apr 1 04:47:22 2022 +0200
Commit:     Hermès Bélusca-Maïto <[email protected]>
CommitDate: Fri Apr 1 04:57:31 2022 +0200

    [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
 

Reply via email to