Files
openbios/arch/sparc32/builtin.c
Mark Cave-Ayland 1dbe55b8e4 Move the basic OpenBIOS configuration header files from include/openbios to include/.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@695 f158a5a8-5612-0410-a976-696ce0be7e32
2010-03-14 17:19:58 +00:00

26 lines
635 B
C

/* tag: openbios forth starter for builtin dictionary for sparc32
*
* Copyright (C) 2003 Stefan Reinauer
*
* See the file "COPYING" for further information about
* the copyright and warranty status of this work.
*/
#include "config.h"
#include "asm/types.h"
#include "libopenbios/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));
}