summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2006-05-14 20:17:29 +0200
committerMichael Brown2006-05-14 20:17:29 +0200
commit29fb77b0a4043027e39dd84e5550d6e144b5035a (patch)
tree80b3fcdedcda165f0b82962e60057fd51d6f3ad1 /src
parentAlso capture INT 19 as a failure path, to allow for boot sectors that (diff)
downloadipxe-29fb77b0a4043027e39dd84e5550d6e144b5035a.tar.gz
ipxe-29fb77b0a4043027e39dd84e5550d6e144b5035a.tar.xz
ipxe-29fb77b0a4043027e39dd84e5550d6e144b5035a.zip
Fix a couple of minor typos.
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/interface/pcbios/int13.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/i386/interface/pcbios/int13.c b/src/arch/i386/interface/pcbios/int13.c
index 1adbef1b..0dd96ac6 100644
--- a/src/arch/i386/interface/pcbios/int13.c
+++ b/src/arch/i386/interface/pcbios/int13.c
@@ -559,10 +559,10 @@ int int13_boot ( unsigned int drive ) {
"\n99:\n\t",
1,
OUT_CONSTRAINTS ( "=d" ( d1 ) ),
- IN_CONSTRAINTS ( "d" ( drive ) ),
+ IN_CONSTRAINTS ( "0" ( drive ) ),
CLOBBER ( "eax", "ebx", "ecx", "esi", "edi", "ebp" ) );
- DBG ( "Booted disk returned via INT 18\n" );
+ DBG ( "Booted disk returned via INT 18 or 19\n" );
/* Unhook INTs 18 and 19 */
unhook_bios_interrupt ( 0x18, ( unsigned int ) int13_exec_fail,