builtin.c

来自「open source bios with linux platform, ve」· C语言 代码 · 共 26 行

C
26
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?