Module Name: src
Committed By: jakllsch
Date: Mon Dec 20 00:39:06 UTC 2010
Modified Files:
src/sys/arch/i386/stand/boot: biosboot.S
Log Message:
We want a literal 0x86 in %ah for this int $0x15 delay,
not the value of the byte at 0x86.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/i386/stand/boot/biosboot.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/i386/stand/boot/biosboot.S
diff -u src/sys/arch/i386/stand/boot/biosboot.S:1.6 src/sys/arch/i386/stand/boot/biosboot.S:1.7
--- src/sys/arch/i386/stand/boot/biosboot.S:1.6 Mon Apr 28 20:23:25 2008
+++ src/sys/arch/i386/stand/boot/biosboot.S Mon Dec 20 00:39:06 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: biosboot.S,v 1.6 2008/04/28 20:23:25 martin Exp $ */
+/* $NetBSD: biosboot.S,v 1.7 2010/12/20 00:39:06 jakllsch Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -132,7 +132,7 @@
call prot_to_real
.code16
loopstop:
- movb 0x86, %ah /* delay for about a second */
+ movb $0x86, %ah /* delay for about a second */
movw $16, %cx
int $0x15
int $0x18 /* might be a boot fail entry */