diff options
author | hpa <hpa> | 2001-08-04 06:12:54 +0000 |
---|---|---|
committer | hpa <hpa> | 2001-08-04 06:12:54 +0000 |
commit | 5e0b0d849d4e06510555d46b74d29a0a2c8be916 (patch) | |
tree | 2ca636a695bee3c8a6101ea5ea5301ecd95f458e | |
parent | 94a570128008f206d7688aeecf3ef96dfbc77fa9 (diff) | |
download | syslinux-1.63-pre3.tar.gz |
Fix short jump out of rangesyslinux-1.63-pre3
-rw-r--r-- | isolinux.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isolinux.asm b/isolinux.asm index 7fa64c64..2830ecbf 100644 --- a/isolinux.asm +++ b/isolinux.asm @@ -583,14 +583,14 @@ spec_query_failed: mov si,alright_msg call writemsg mov [DriveNo],dl - jmp found_drive +.found_drive: jmp found_drive ; Award BIOS 4.51 apparently passes garbage in sp_drive, ; but if this was the drive number originally passed in ; DL then consider it "good enough" .maybe_broken: cmp byte [DriveNo],dl - je found_drive + je .found_drive .still_broken: dec dx cmp dl, 80h |