diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-12-23 12:02:52 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-12-23 12:02:52 -0800 |
commit | d0f275981c9289dc4b8df64e72cd9902bf85aebe (patch) | |
tree | bc74101d6bcc73ae88c6183f46cefae585a9e52e /mbr/gptmbr.S | |
parent | 8255c94785532b1c6fc4937d710379d4c9f679c4 (diff) | |
download | syslinux-d0f275981c9289dc4b8df64e72cd9902bf85aebe.tar.gz syslinux-d0f275981c9289dc4b8df64e72cd9902bf85aebe.tar.xz syslinux-d0f275981c9289dc4b8df64e72cd9902bf85aebe.zip |
mbr: Make sure the MBR code starts with the byte 0x33
Apparently some BIOSes (including some Acer Travelmate machines)
require an MBR to start with 0x33; apparently Micro$oft MBRs start
with 33 C0, an alternate coding of the "xorw %ax,%ax" instruction. As
such, follow suit to work on these braindead BIOSes.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'mbr/gptmbr.S')
-rw-r--r-- | mbr/gptmbr.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbr/gptmbr.S b/mbr/gptmbr.S index 8ed4cf48..ae0549f0 100644 --- a/mbr/gptmbr.S +++ b/mbr/gptmbr.S @@ -55,8 +55,8 @@ bootsec: .text .globl _start _start: + .byte 0x33, 0xc0 /* xorw %ax, %ax */ cli - xorw %ax, %ax movw %ax, %ds movw %ax, %ss movw $stack, %sp |