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

📄 plainboot.c

📁 open source bios with linux platform, very good and can be reused.
💻 C
字号:
/* tag: openbios fixed address forth starter * * Copyright (C) 2003 Stefan Reinauer * * See the file "COPYING" for further information about * the copyright and warranty status of this work. */#include "openbios/config.h"#include "sys_info.h"#include "multiboot.h"#define FIXED_DICTSTART 0xfffe0000#define FIXED_DICTEND   0xfffeffffvoid collect_multiboot_info(struct sys_info *info);void collect_multiboot_info(struct sys_info *info){	info->dict_start=(unsigned long *)FIXED_DICTSTART;	info->dict_end=(unsigned long *)FIXED_DICTEND;}

⌨️ 快捷键说明

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