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

📄 table.c

📁 freebsd v4.4内核源码
💻 C
字号:
/* * APM (Advanced Power Management) BIOS Device Driver * * Copyright (c) 1994-1995 by HOSOKAWA, Tatsumi <hosokawa@jp.FreeBSD.org> * * This software may be used, modified, copied, and distributed, in * both source and binary form provided that the above copyright and * these terms are retained. Under no circumstances is the author * responsible for the proper functioning of this software, nor does * the author assume any responsibility for damages incurred with its * use. * * Sep., 1994	Implemented on FreeBSD 1.1.5.1R (Toshiba AVS001WD) * * $FreeBSD: src/sys/i386/apm/apm_init/table.c,v 1.4.8.2 1999/09/05 08:10:14 peter Exp $ */#include <apm_bios.h>struct pseudo_desc {	unsigned short	limit;	unsigned long	base __attribute__ ((packed));};struct pseudo_desc Idtr_prot = { 0, 0 }; /* filled on run time */struct pseudo_desc Idtr_real = { 0x400 - 1, 0x0 };

⌨️ 快捷键说明

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