Switch SPARC32 page tables over to use OFMEM's ofmem_posix_memalign() rather than...
[openbios.git] / arch / x86 / builtin.c
bloba6491722b836cf5f2378ddeb5030f4624f3a9542
1 /* tag: openbios forth starter for builtin dictionary
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 "libopenbios/sys_info.h"
13 * wrap an array around the hex'ed dictionary file
16 #include "static-dict.h"
18 void collect_multiboot_info(struct sys_info *info);
19 void collect_multiboot_info(struct sys_info *info)
21 info->dict_start=(unsigned long *)forth_dictionary;
22 info->dict_end=(unsigned long *)((ucell)forth_dictionary +
23 sizeof(forth_dictionary));