diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-12-08 18:16:31 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-08 18:16:31 -0800 |
commit | 8d5ed148d33d3ec4db19d3456b521188a8442fc8 (patch) | |
tree | a602e704fd90b377d71d397d0b4b06b622ccfae8 /dosutil | |
parent | df8e2309109e11447dab0871e4503a96f3201a3a (diff) | |
download | syslinux-8d5ed148d33d3ec4db19d3456b521188a8442fc8.tar.gz |
eltorito: fix comments that confuse NASM
The sequence ; ... \ is interpreted by NASM as a continuation line of
a comment which thus comments out the next line.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'dosutil')
-rw-r--r-- | dosutil/eltorito.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dosutil/eltorito.asm b/dosutil/eltorito.asm index d2c65b51..3ecb46c2 100644 --- a/dosutil/eltorito.asm +++ b/dosutil/eltorito.asm @@ -62,14 +62,14 @@ RPolyL equ 08320h Cdrom: -NextDriver dd -1 ;\ +NextDriver dd -1 ;-+ Attributes dw 0C800h ; | Pointers dw Strategy ; | dw Commands ; | MSCDEX requires this DeviceName db 'ELTORITO' ; | data in these locations dw 0 ; | DriveLetter db 0 ; | -NumUnitsSupp db 1 ;/ +NumUnitsSupp db 1 ;-+ DriverName db 'El-Torito CD-ROM Device Driver',0 ReqHdrLoc dw 0,0 ; 35h |