2006-04-26 15:08:19 +00:00
|
|
|
/* tag: openbios loader prototypes for x86
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2004 Stefan Reinauer
|
|
|
|
|
*
|
|
|
|
|
* See the file "COPYING" for further information about
|
|
|
|
|
* the copyright and warranty status of this work.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-08-04 20:37:32 +00:00
|
|
|
/* forthload.c */
|
2006-04-26 15:08:19 +00:00
|
|
|
int forth_load(struct sys_info *info, const char *filename, const char *cmdline);
|
2009-08-04 20:37:32 +00:00
|
|
|
|
|
|
|
|
/* elfload.c */
|
2006-04-26 15:08:19 +00:00
|
|
|
int elf_load(struct sys_info *info, const char *filename, const char *cmdline);
|
2009-08-04 20:37:32 +00:00
|
|
|
|
|
|
|
|
/* linux_load.c */
|
2006-04-26 15:08:19 +00:00
|
|
|
int linux_load(struct sys_info *info, const char *file, const char *cmdline);
|
|
|
|
|
|
2009-08-04 20:37:32 +00:00
|
|
|
/* context.c */
|
|
|
|
|
extern struct context *__context;
|
2006-04-26 15:08:19 +00:00
|
|
|
unsigned int start_elf(unsigned long entry_point, unsigned long param);
|
2009-08-04 20:37:32 +00:00
|
|
|
|
|
|
|
|
/* boot.c */
|
|
|
|
|
extern struct sys_info sys_info;
|
2009-01-06 18:46:22 +00:00
|
|
|
void boot(void);
|