Just some pretty printing for 640 width screens

This commit is contained in:
reinoud 2001-04-09 19:22:42 +00:00
parent 28d9bbd17d
commit b592059273

View File

@ -1,4 +1,4 @@
/* $NetBSD: rpc_machdep.c,v 1.45 2001/03/20 18:20:55 reinoud Exp $ */
/* $NetBSD: rpc_machdep.c,v 1.46 2001/04/09 19:22:42 reinoud Exp $ */
/*
* Copyright (c) 2000-2001 Reinoud Zandijk.
@ -949,17 +949,17 @@ initarm_new_bootloader(bootconf)
printf("Kernel arg string (@%p) %s\n", (void *) bootconfig.argvirtualbase, (char *)bootconfig.argvirtualbase);
printf("\nBoot configuration structure reports the following memory\n");
printf(" DRAM block 0a at %08x size %08x DRAM block 0b at %08x size %08x\n\r",
printf(" DRAM block 0a at %08x size %08x DRAM block 0b at %08x size %08x\n\r",
bootconfig.dram[0].address,
bootconfig.dram[0].pages * bootconfig.pagesize,
bootconfig.dram[1].address,
bootconfig.dram[1].pages * bootconfig.pagesize);
printf(" DRAM block 1a at %08x size %08x DRAM block 1b at %08x size %08x\n\r",
printf(" DRAM block 1a at %08x size %08x DRAM block 1b at %08x size %08x\n\r",
bootconfig.dram[2].address,
bootconfig.dram[2].pages * bootconfig.pagesize,
bootconfig.dram[3].address,
bootconfig.dram[3].pages * bootconfig.pagesize);
printf(" VRAM block 0 at %08x size %08x\n\r",
printf(" VRAM block 0 at %08x size %08x\n\r",
bootconfig.vram[0].address,
bootconfig.vram[0].pages * bootconfig.pagesize);
@ -1901,4 +1901,3 @@ initarm_old_bootloader(bootconf)
#endif
/* End of machdep.c */