summaryrefslogtreecommitdiff
path: root/menu
diff options
context:
space:
mode:
authorhpa <hpa>2004-02-03 06:14:15 +0000
committerhpa <hpa>2004-02-03 06:14:15 +0000
commit5bb3f6793a4ea4ca9d209d88e4777974ec1ce70f (patch)
tree7f372dd8f51dffc1baa65083b011c70a00e44837 /menu
parent61d637fbe93c248e3eecf3332a45abc5e21d091b (diff)
downloadsyslinux-5bb3f6793a4ea4ca9d209d88e4777974ec1ce70f.tar.gz
Correctly specify how to detect syslinux
Diffstat (limited to 'menu')
-rw-r--r--menu/syslinux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/menu/syslinux.c b/menu/syslinux.c
index ebb72b5b..801e314a 100644
--- a/menu/syslinux.c
+++ b/menu/syslinux.c
@@ -23,8 +23,8 @@ static inline int asm_issyslinux(void)
asm("int $0x21"
: "+a" (eax), "+b" (ebx), "+c" (ecx), "+d" (edx));
- return (eax == 0x53590000) && (ebx == 0x534c0000) &&
- (ecx == 0x494e0000) && (edx == 0x55580000);
+ return (eax == 0x59530000) && (ebx == 0x4c530000) &&
+ (ecx == 0x4e490000) && (edx == 0x58550000);
}
int issyslinux(void)