summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-02-13 10:56:39 -0800
committerH. Peter Anvin <hpa@zytor.com>2008-02-13 10:56:39 -0800
commitda3fc0db1ed49ee3e5a93260d644a598e5f38de3 (patch)
tree3d6ed350d41f7c3e433baf2df1eccf45eccae17e
parent32a5fabdf5a79aa339e4b6a9b710a287792fe6ad (diff)
downloadsyslinux-da3fc0db1ed49ee3e5a93260d644a598e5f38de3.tar.gz
isolinux: spec buffer size is 13h (19), not 13
The El Torito spec says "13", but it's implicitly hexadecimal. We got it right in one place and wrong in another. Fix.
-rw-r--r--isolinux.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/isolinux.asm b/isolinux.asm
index 649bfe01..3a8a6eed 100644
--- a/isolinux.asm
+++ b/isolinux.asm
@@ -562,7 +562,7 @@ spec_query_failed:
.test_loop: pusha
mov ax,4B01h
mov si,spec_packet
- mov byte [si],13 ; Size of buffer
+ mov byte [si],13h ; Size of buffer
call int13
popa
jc .still_broken