summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Weingartner <weingart@cvs.openbsd.org>2009-09-30 19:03:18 +0000
committerTobias Weingartner <weingart@cvs.openbsd.org>2009-09-30 19:03:18 +0000
commitd2427e8e31cd688ca824611e6a19ad7a3177f010 (patch)
treecedfc27be12f96e8656577bdd8085add9c2e29c4
parent1ae4fd96cbce0e4906a8d367a79dad9aa6ebc73e (diff)
Fix comments to match reality.
Thank you Vladimir Kirillov <proger () hackndev ! com>
-rw-r--r--sys/arch/amd64/stand/biosboot/biosboot.S6
-rw-r--r--sys/arch/i386/stand/biosboot/biosboot.S6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/amd64/stand/biosboot/biosboot.S b/sys/arch/amd64/stand/biosboot/biosboot.S
index 231a95edfc2..b77ee1edff2 100644
--- a/sys/arch/amd64/stand/biosboot/biosboot.S
+++ b/sys/arch/amd64/stand/biosboot/biosboot.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: biosboot.S,v 1.4 2007/09/07 09:44:20 weingart Exp $ */
+/* $OpenBSD: biosboot.S,v 1.5 2009/09/30 19:03:17 weingart Exp $ */
/*
* Copyright (c) 2003 Tobias Weingartner
@@ -45,7 +45,7 @@
/*
* Memory layout:
*
- * 0x00000 -> 0x079FF our stack (to 30k5)
+ * 0x00000 -> 0x07BFF our stack (to 31k)
* 0x07A00 -> 0x07BFF typical MBR loc (at 30k5)
* 0x07C00 -> 0x07DFF our code (at 31k)
* 0x07E00 -> ... /boot inode block (at 31k5)
@@ -61,7 +61,7 @@
* (In real mode on x86, segment registers contain a base address in
* paragraphs (16 bytes). 0000:00010 is the same as 0001:0000.)
*
- * We set the stack to start at 0000:79FC (grows down on i386)
+ * We set the stack to start at 0000:7BFC (grows down on i386)
*
* We then read the inode for /boot into memory just above us at
* 07E0:0000, and run through the direct block table (and the first
diff --git a/sys/arch/i386/stand/biosboot/biosboot.S b/sys/arch/i386/stand/biosboot/biosboot.S
index 3ec6e8e7682..cd6e7f90341 100644
--- a/sys/arch/i386/stand/biosboot/biosboot.S
+++ b/sys/arch/i386/stand/biosboot/biosboot.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: biosboot.S,v 1.39 2007/09/07 09:43:35 weingart Exp $ */
+/* $OpenBSD: biosboot.S,v 1.40 2009/09/30 19:03:17 weingart Exp $ */
/*
* Copyright (c) 2003 Tobias Weingartner
@@ -45,7 +45,7 @@
/*
* Memory layout:
*
- * 0x00000 -> 0x079FF our stack (to 30k5)
+ * 0x00000 -> 0x07BFF our stack (to 31k)
* 0x07A00 -> 0x07BFF typical MBR loc (at 30k5)
* 0x07C00 -> 0x07DFF our code (at 31k)
* 0x07E00 -> ... /boot inode block (at 31k5)
@@ -61,7 +61,7 @@
* (In real mode on x86, segment registers contain a base address in
* paragraphs (16 bytes). 0000:00010 is the same as 0001:0000.)
*
- * We set the stack to start at 0000:79FC (grows down on i386)
+ * We set the stack to start at 0000:7BFC (grows down on i386)
*
* We then read the inode for /boot into memory just above us at
* 07E0:0000, and run through the direct block table (and the first