diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-12-28 16:51:34 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-12-28 16:51:34 -0800 |
commit | 64b6753f6bdd279c35bb843e78a6f353d387fb54 (patch) | |
tree | c37ebd2d436ec1a760ea60ff1c8bb0b1ad3967d5 /dosutil | |
parent | 7b23d156550f3c6ad239c88912d7727b2b615aa8 (diff) | |
download | syslinux-64b6753f6bdd279c35bb843e78a6f353d387fb54.tar.gz syslinux-64b6753f6bdd279c35bb843e78a6f353d387fb54.tar.xz syslinux-64b6753f6bdd279c35bb843e78a6f353d387fb54.zip |
eltorito: align some pointlessly misaligned data items
Align some data items (including the jump table) which were misaligned
for no clear reason.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'dosutil')
-rw-r--r-- | dosutil/eltorito.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dosutil/eltorito.asm b/dosutil/eltorito.asm index 1ff8b38c..eabda126 100644 --- a/dosutil/eltorito.asm +++ b/dosutil/eltorito.asm @@ -71,10 +71,11 @@ DriveLetter db 0 ; | NumUnitsSupp db 1 ;-+ DriverName db 'El-Torito CD-ROM Device Driver',0 -ReqHdrLoc dw 0,0 ; 35h -DriveNumber db 0 ; 39h -XferAddr dw 0,0 ; 3ah -Checksum dw -1,-1 + align 4, db 0 +ReqHdrLoc dd 0 +XferAddr dd 0 +Checksum dd -1 +DriveNumber db 0 ReadBytes db 0 ;0 --> 2048 bytes/sector ;1 --> 1024 bytes/sector ;2 --> 512 bytes/sector |