T-EMU  2
The Terma Emulator
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
Loader.h
Go to the documentation of this file.
1 #ifdef __cplusplus
2 extern "C" {
3 #endif
4 
5 #include <stdint.h>
6 
20 int temu_loadImage(void *mem, const char *file);
21 
40 int temu_loadRelocatedImage(void *mem, const char *file, uint64_t pa);
41 
54 int temu_loadBinaryImage(void *mem, const char *file, uint64_t pa);
55 
56 
57 int temu_loadElfImage(void *mem, const char *file, uint64_t pa);
58 int temu_loadSrecImage(void *mem, const char *file, uint64_t pa);
59 
60 #ifdef __cplusplus
61 }
62 #endif
int temu_loadImage(void *mem, const char *file)
Loads a binary image to the memory object.
int temu_loadSrecImage(void *mem, const char *file, uint64_t pa)
int temu_loadBinaryImage(void *mem, const char *file, uint64_t pa)
Loads a raw binary image to the memory object at the given address.
int temu_loadRelocatedImage(void *mem, const char *file, uint64_t pa)
Loads a binary image to the memory object at the given address.
int temu_loadElfImage(void *mem, const char *file, uint64_t pa)