You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
344 B
C

16 years ago
#ifndef _ELF_LOADER_H
#define _ELF_LOADER_H
#include <types.h>
#include <ciloio.h>
16 years ago
void load_elf32_section(struct file *fp, uint32_t address,
uint32_t file_offset, uint32_t length);
16 years ago
void load_elf32_uninitialized_memory(uint32_t address, uint32_t length);
int load_elf32_file(struct file *fp, char *cmd_line);
16 years ago
#endif /* _ELF_LOADER_H */