Change the SPARC32 build system so that OFMEM is now included within SPARC32 builds.
[openbios.git] / arch / sparc64 / builtin.c
blobaba8a2b3c0ffed273332cfe9e68e7dc99e0c5a2f
1 /* tag: openbios forth starter for builtin dictionary for sparc64
3 * Copyright (C) 2003 Stefan Reinauer
5 * See the file "COPYING" for further information about
6 * the copyright and warranty status of this work.
7 */
9 #include "config.h"
10 #include "asm/types.h"
11 #include "libopenbios/sys_info.h"
14 * wrap an array around the hex'ed dictionary file
17 #include "static-dict.h"
19 void collect_multiboot_info(struct sys_info *info);
20 void collect_multiboot_info(struct sys_info *info)
22 info->dict_start=(unsigned long *)forth_dictionary;
23 info->dict_end=(unsigned long *)((ucell)forth_dictionary +
24 sizeof(forth_dictionary));