diff options
| author | hpa <hpa> | 2002-06-10 18:32:42 +0000 |
|---|---|---|
| committer | hpa <hpa> | 2002-06-10 18:32:42 +0000 |
| commit | 59db3d71fd90aac45d70b537f2aea557c3eac135 (patch) | |
| tree | 7a1f2bde3f5a3b3f1c97cd440fdf11a4792099a3 /ldlinux.asm | |
| parent | 5e5fa8df698bf56701eaa652866adca832503136 (diff) | |
| download | syslinux-59db3d71fd90aac45d70b537f2aea557c3eac135.tar.gz | |
Remove all explicit "near" declarations, except the ones that are
absolutely necessary.
Diffstat (limited to 'ldlinux.asm')
| -rw-r--r-- | ldlinux.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ldlinux.asm b/ldlinux.asm index 955665a3..bf8ebbc2 100644 --- a/ldlinux.asm +++ b/ldlinux.asm @@ -1024,7 +1024,7 @@ mkkeymap: stosb ; mov di,syslinux_cfg call open - jz near no_config_file + jz no_config_file ; ; Now we have the config file open ; @@ -1037,7 +1037,7 @@ check_for_key: cmp word [ForcePrompt],byte 0 ; Force prompt? jnz enter_command test byte [KbdFlags],5Bh ; Caps, Scroll, Shift, Alt - jz near auto_boot ; If neither, default boot + jz auto_boot ; If neither, default boot enter_command: mov si,boot_prompt @@ -1214,7 +1214,7 @@ clin_opt_ptr: dec si ; Point to first nonblank vk_check: pusha mov cx,11 repe cmpsb ; Is this it? - je near vk_found + je vk_found popa add si,vk_size loop vk_check |
