mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Boy, was THIS buggered up! Calm the compiler by fixing the obvious
syntax errors.
This commit is contained in:
parent
e9a380faf6
commit
8c05edbc74
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4634
@ -24,7 +24,7 @@
|
||||
* the rights to redistribute these changes.
|
||||
*
|
||||
* from: Mach, [92/04/03 16:51:14 rvb]
|
||||
* $Id: boot.c,v 1.24 1994/11/18 06:22:11 phk Exp $
|
||||
* $Id: boot.c,v 1.25 1994/11/18 10:21:31 phk Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -78,14 +78,11 @@ int drive;
|
||||
bootinfo.bios_geom[ret] = get_diskinfo(ret + 0x80);
|
||||
|
||||
printf("\n>> FreeBSD BOOT @ 0x%x: %d/%d k of memory\n",
|
||||
ouraddr,
|
||||
memsize(0),
|
||||
memsize(1));
|
||||
ouraddr, memsize(0), memsize(1));
|
||||
printf("Use hd(1,a)/kernel to boot sd0 when wd0 is also installed.\n");
|
||||
printf("Usage: [[[%s(0,a)]%s][-s][-r][-a][-c][-d][-b]]\n");
|
||||
printf("Use ? for file list, or simply press Return for default\n");
|
||||
, devs[(drive & 0x80) ? 0 : 2]
|
||||
, names[0]);
|
||||
printf("Usage: [[[%s(0,a)]%s][-s][-r][-a][-c][-d][-b]]\n",
|
||||
devs[(drive & 0x80) ? 0 : 2], names[0]);
|
||||
printf("Use ? for file list or simply press Return for defaults\n");
|
||||
gateA20();
|
||||
loadstart:
|
||||
/***************************************************************\
|
||||
|
Loading…
Reference in New Issue
Block a user