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 /conio.inc | |
parent | 5e5fa8df698bf56701eaa652866adca832503136 (diff) | |
download | syslinux-59db3d71fd90aac45d70b537f2aea557c3eac135.tar.gz |
Remove all explicit "near" declarations, except the ones that are
absolutely necessary.
Diffstat (limited to 'conio.inc')
-rw-r--r-- | conio.inc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -98,12 +98,12 @@ msg_putchar: ; Normal character cmp al,0Ch ; <FF> = clear screen je msg_formfeed cmp al,19h ; <EM> = return to text mode - je near msg_novga + je msg_novga cmp al,18h ; <CAN> = VGA filename follows - je near msg_vga + je msg_vga jnb .not_modectl cmp al,10h ; 10h to 17h are mode controls - jae near msg_modectl + jae msg_modectl .not_modectl: msg_normal: call write_serial_displaymask ; Write to serial port |