2006-05-04 22:07:30 +00:00
|
|
|
/* tag: openbios forth starter for builtin dictionary for sparc32
|
2006-04-26 16:39:16 +00:00
|
|
|
*
|
|
|
|
|
* 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"
|
2008-11-17 19:42:11 +00:00
|
|
|
#include "asm/types.h"
|
2010-03-14 16:09:44 +00:00
|
|
|
#include "libopenbios/sys_info.h"
|
2006-04-26 16:39:16 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 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));
|
|
|
|
|
}
|