From 07e57f53a2d4d36aea300f8801a9131e224610a5 Mon Sep 17 00:00:00 2001 From: mycroft Date: Mon, 6 Sep 1993 22:09:45 +0000 Subject: [PATCH] Put back printf() for entry point. It certainly fits. --- sys/arch/i386/boot/boot.c | 6 +++--- sys/arch/i386/boot/version.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/arch/i386/boot/boot.c b/sys/arch/i386/boot/boot.c index 4d544be76224..880878ed1378 100644 --- a/sys/arch/i386/boot/boot.c +++ b/sys/arch/i386/boot/boot.c @@ -25,7 +25,7 @@ * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. * - * $Id: boot.c,v 1.10 1993/08/28 01:18:43 brezak Exp $ + * $Id: boot.c,v 1.11 1993/09/06 22:09:45 mycroft Exp $ */ /* @@ -82,7 +82,7 @@ int drive; ouraddr, argv[7] = memsize(0), argv[8] = memsize(1), - "$Revision: 1.10 $"); + "$Revision: 1.11 $"); gateA20(); loadstart: /***************************************************************\ @@ -273,7 +273,7 @@ loadprog(howto) /****************************************************************/ /* copy that first page and overwrite any BIOS variables */ /****************************************************************/ - /*printf("entry point=0x%x\n" ,((int)startaddr) & 0xffffff);*/ + printf("entry=0x%x\n" ,((int)startaddr) & 0xffffff); /* Under no circumstances overwrite precious BIOS variables! */ pcpy(tmpbuf, addr0, 0x400); pcpy(tmpbuf + 0x500, addr0 + 0x500, 4096 - 0x500); diff --git a/sys/arch/i386/boot/version.c b/sys/arch/i386/boot/version.c index fcdee04464c4..033df2b1b4bb 100644 --- a/sys/arch/i386/boot/version.c +++ b/sys/arch/i386/boot/version.c @@ -25,7 +25,7 @@ * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. * - * $Id: version.c,v 1.10 1993/08/28 01:18:43 brezak Exp $ + * $Id: version.c,v 1.11 1993/09/06 22:09:45 mycroft Exp $ */ /* @@ -82,7 +82,7 @@ int drive; ouraddr, argv[7] = memsize(0), argv[8] = memsize(1), - "$Revision: 1.10 $"); + "$Revision: 1.11 $"); gateA20(); loadstart: /***************************************************************\ @@ -273,7 +273,7 @@ loadprog(howto) /****************************************************************/ /* copy that first page and overwrite any BIOS variables */ /****************************************************************/ - /*printf("entry point=0x%x\n" ,((int)startaddr) & 0xffffff);*/ + printf("entry=0x%x\n" ,((int)startaddr) & 0xffffff); /* Under no circumstances overwrite precious BIOS variables! */ pcpy(tmpbuf, addr0, 0x400); pcpy(tmpbuf + 0x500, addr0 + 0x500, 4096 - 0x500);