⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 boot.c

📁 一款类linux的操作系统源码
💻 C
字号:
/* *  Roadrunner/pk *    Copyright (C) 1989-2001  Cornfed Systems, Inc. * *  The Roadrunner/pk operating system is free software; you can *  redistribute and/or modify it under the terms of the GNU General *  Public License, version 2, as published by the Free Software *  Foundation. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public *  License along with this program; if not, write to the Free *  Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, *  MA 02111-1307 USA * *  More information about the Roadrunner/pk operating system of *  which this file is a part is available on the World-Wide Web *  at: http://www.cornfed.com. * */#include <stdio.h>#include <string.h>#include <sys.h>#include <sys/boot.h>struct bootparams bootparams;#if _DEBUGstatic u_longreal2protptr(u_long ptr){    return ((ptr & 0xf0000000) >> 12) | (ptr & 0xffff);}#endifvoidget_boot_params(){    bcopy((char *) 0x1000, &bootparams, sizeof(struct bootparams));#if _DEBUG    /* Fixed disk information */    kprintf("get_boot_params: boot drive %s",	    bootparams.drv & 0x80 ? "hard disk" : "floppy disk");    if (bootparams.drv & 0x80)	kprintf(" partition offset %u", (u_int) bootparams.offset);    kprintf("\n");    kprintf("get_boot_params: ");    kprintf("bios geometry %u trks %u hds %u sec/trk\n",	    (u_int) ((((bootparams.sec_cyl_hi & 0xc0) << 2) |		      bootparams.cyl_lo) + 1),	    (u_int) (bootparams.hd + 1),	    (u_int) (bootparams.sec_cyl_hi & 0x3f));    /* VBE controller information */    if (strncmp(bootparams.vbe.signature, "VESA", 4) == 0) {	kprintf("get_boot_params: vesa version %d.%d\n",		bcd2int(bootparams.vbe.version >> 8),		bcd2int(bootparams.vbe.version));	kprintf("get_boot_params: vesa oem string: %s\n",		(char *) real2protptr(bootparams.vbe.oem_string_ptr));	kprintf("get_boot_params: ");	kprintf("vesa video memory %d 64 Kbyte banks\n",		bootparams.vbe.total_memory);    }#endif}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -