diff options
Diffstat (limited to 'hw/cris/boot.h')
-rw-r--r-- | hw/cris/boot.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hw/cris/boot.h b/hw/cris/boot.h new file mode 100644 index 0000000000..c4d3fa6f6f --- /dev/null +++ b/hw/cris/boot.h @@ -0,0 +1,15 @@ +#ifndef _CRIS_BOOT_H +#define HW_CRIS_BOOT_H 1 + +struct cris_load_info +{ + const char *image_filename; + const char *cmdline; + int image_size; + + hwaddr entry; +}; + +void cris_load_image(CRISCPU *cpu, struct cris_load_info *li); + +#endif |