Files
openbios/arch/sparc32/boot.h
Stefan Reinauer 0726cb7dd7 blueswirl's latest console-nographic.diff.bz2
git-svn-id: svn://coreboot.org/openbios/openbios-devel@71 f158a5a8-5612-0410-a976-696ce0be7e32
2006-07-23 14:29:29 +00:00

18 lines
691 B
C

/* tag: openbios loader prototypes for sparc32
*
* Copyright (C) 2004 Stefan Reinauer
*
* See the file "COPYING" for further information about
* the copyright and warranty status of this work.
*/
int forth_load(struct sys_info *info, const char *filename, const char *cmdline);
int elf_load(struct sys_info *, const char *filename, const char *cmdline,
const void *romvec);
int aout_load(struct sys_info *, const char *filename, const char *cmdline,
const void *romvec);
int linux_load(struct sys_info *, const char *filename, const char *cmdline,
const void *romvec);
unsigned int start_elf(unsigned long entry_point, unsigned long param);