diff options
author | hpa <hpa> | 1999-09-26 07:49:34 +0000 |
---|---|---|
committer | hpa <hpa> | 1999-09-26 07:49:34 +0000 |
commit | 275f21f7d92f377d15a821c217667c54e788e8bd (patch) | |
tree | 4067ddc3bbdcd85a71b3ffab75ac9a2d80889847 | |
parent | 47ae9927165313562f8755cd6dbcb00d73a50b93 (diff) | |
download | syslinux.git-275f21f7d92f377d15a821c217667c54e788e8bd.tar.gz syslinux.git-275f21f7d92f377d15a821c217667c54e788e8bd.tar.xz syslinux.git-275f21f7d92f377d15a821c217667c54e788e8bd.zip |
memory_scan_* reports results in CF not ZF
-rw-r--r-- | pxelinux.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pxelinux.asm b/pxelinux.asm index c6369c69..73bcfb1a 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -449,7 +449,7 @@ have_pxenv: ; Nope, !PXE structure missing despite API 2.1+, or at least ; the pointer is missing. Do a last-ditch attempt to find it. call memory_scan_for_pxe_struct - jne have_pxe + jnc have_pxe ; Otherwise, no dice, use PXENV+ structure mov bx,si |