File: boot.h

package info (click to toggle)
openbios-sparc 1.0%2Bsvn640-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,412 kB
  • ctags: 12,091
  • sloc: ansic: 57,249; asm: 2,680; xml: 1,335; cpp: 414; makefile: 224; sh: 190
file content (24 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 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.
 */

/* forthload.c */
int forth_load(struct sys_info *info, const char *filename, const char *cmdline);

/* elfload.c */
int elf_load(struct sys_info *info, const char *filename, const char *cmdline);

/* linux_load.c */
int linux_load(struct sys_info *info, const char *file, const char *cmdline);

/* context.c */
extern struct context *__context;
unsigned int start_elf(unsigned long entry_point, unsigned long param);

/* boot.c */
extern struct sys_info sys_info;
void boot(void);