diff options
author | 2009-09-30 19:03:17 +0000 | |
---|---|---|
committer | 2009-09-30 19:03:17 +0000 | |
commit | f634e7146bf568db54a696e9b4a12eeac971c1d5 (patch) | |
tree | 73cbe518023c7337fa627d95e6da34f87fb0a32b | |
parent | Oups, these changes should not have been commited. Revert. (diff) | |
download | wireguard-openbsd-f634e7146bf568db54a696e9b4a12eeac971c1d5.tar.xz wireguard-openbsd-f634e7146bf568db54a696e9b4a12eeac971c1d5.zip |
Fix comments to match reality.
Thank you Vladimir Kirillov <proger () hackndev ! com>
-rw-r--r-- | sys/arch/amd64/stand/biosboot/biosboot.S | 6 | ||||
-rw-r--r-- | sys/arch/i386/stand/biosboot/biosboot.S | 6 |
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 |