
底层技术
文章平均质量分 76
lovehappystudy
爱好:计算机程序设计
展开
-
读取ROM-BIOS
/* Dump ROM-BIOSCompiled with Turbo C 2.01 by Blue.J 2008.10.24*/#include #include void main(){ char filename[32]; FILE *fp; static unsigned char far *addr=(unsigned char far *)MK_FP(0xf000,原创 2008-10-24 16:31:00 · 1148 阅读 · 0 评论 -
ROM-BIOS与实模式1MB常规内存的结构
导读:ROM-BIOS与实模式1MB常规内存的结构ROM BIOS and the first MEG of memoryThe following is the layout and contents of the first Meg of memory. As I get more information, I will update it a转载 2008-10-24 19:57:00 · 2000 阅读 · 0 评论 -
CMOS内存信息
The CMOS memory informationCMOS stands for: Complementary Metal Oxide SemiconductorIn the 286 and up, the CMOS memory chip holds 64 bytes of data. Thedata is held in th转载 2008-10-24 20:05:00 · 908 阅读 · 0 评论 -
Memory Map (x86) ,X86计算机内存映射
Memory Map (x86) This article describes the contents of the computers physical memory at the moment that the BIOS jumps to your bootloader code.Contents [hide]1 "Low" memory (1.1 Overvie转载 2008-10-25 14:18:00 · 1742 阅读 · 0 评论 -
用C语言实现硬件信息的获取
用C语言实现硬件信息的获取,包括CPU、BIOS、内存、主板、集成设备、端口、主板插槽 、Cache等。 #ifndef __SM_BIOS_H__#define __SM_BIOS_H__#define TRUE 1#define FALSE 0#define ERROR -1typedef unsigned char BYTE;typedef unsigned short WORD;t原创 2008-10-27 19:04:00 · 7700 阅读 · 4 评论