Author: hbelusca Date: Tue Jan 31 22:08:35 2017 New Revision: 73652
URL: http://svn.reactos.org/svn/reactos?rev=73652&view=rev Log: Port trunk commit r73651.
Modified: branches/ReactOS-0.4.4-FOSDEM2017/reactos/boot/freeldr/bootsect/isombr.S
Modified: branches/ReactOS-0.4.4-FOSDEM2017/reactos/boot/freeldr/bootsect/isombr.S URL: http://svn.reactos.org/svn/reactos/branches/ReactOS-0.4.4-FOSDEM2017/reactos... ============================================================================== --- branches/ReactOS-0.4.4-FOSDEM2017/reactos/boot/freeldr/bootsect/isombr.S [iso-8859-1] (original) +++ branches/ReactOS-0.4.4-FOSDEM2017/reactos/boot/freeldr/bootsect/isombr.S [iso-8859-1] Tue Jan 31 22:08:35 2017 @@ -9,7 +9,7 @@ .code16
// The "isohybrid" tool patching our ISO will write the LBA of the El Torito BIOS Boot Sector to this address. -pBootSectorLBA = start+432; +pBootSectorLBA = start+432
// Our BIOS Boot Sector contains this signature at the specified position and our third-party imported "isohybrid" patching tool checks for it. // This is also why it's the same signature ISOLINUX uses. @@ -96,6 +96,8 @@ jmp die
// The "isohybrid" tool will add the remaining information, including the infamous 0xAA55 MBR signature. +.org 431 + .byte 0
.endcode16