1 /* tag: openbios fixed address forth starter
3 * Copyright (C) 2003 Stefan Reinauer
5 * See the file "COPYING" for further information about
6 * the copyright and warranty status of this work.
10 #include "libopenbios/sys_info.h"
11 #include "multiboot.h"
13 #define FIXED_DICTSTART 0xfffe0000
14 #define FIXED_DICTEND 0xfffeffff
16 void collect_multiboot_info(struct sys_info
*info
);
17 void collect_multiboot_info(struct sys_info
*info
)
19 info
->dict_start
=(unsigned long *)FIXED_DICTSTART
;
20 info
->dict_end
=(unsigned long *)FIXED_DICTEND
;