plainboot.c
来自「open source bios with linux platform, ve」· C语言 代码 · 共 23 行
C
23 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?