📄 plainboot.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 + -