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

📄 builtin.c

📁 open source bios with linux platform, very good and can be reused.
💻 C
字号:
/* tag: openbios forth starter for builtin dictionary * * 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"/* * wrap an array around the hex'ed dictionary file */#include "static-dict.h"void collect_multiboot_info(struct sys_info *info);void collect_multiboot_info(struct sys_info *info){	info->dict_start=(unsigned long *)forth_dictionary;	info->dict_end=(unsigned long *)((ucell)forth_dictionary +			sizeof(forth_dictionary));}

⌨️ 快捷键说明

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