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
13 lines
344 B
C
#ifndef _ELF_LOADER_H
|
|
#define _ELF_LOADER_H
|
|
|
|
#include <types.h>
|
|
#include <ciloio.h>
|
|
|
|
void load_elf32_section(struct file *fp, uint32_t address,
|
|
uint32_t file_offset, uint32_t length);
|
|
void load_elf32_uninitialized_memory(uint32_t address, uint32_t length);
|
|
int load_elf32_file(struct file *fp, char *cmd_line);
|
|
|
|
#endif /* _ELF_LOADER_H */
|