diff options
Diffstat (limited to 'hw/cris-boot.h')
-rw-r--r-- | hw/cris-boot.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hw/cris-boot.h b/hw/cris-boot.h new file mode 100644 index 0000000..e9caf8d --- /dev/null +++ b/hw/cris-boot.h @@ -0,0 +1,11 @@ + +struct cris_load_info +{ + const char *image_filename; + const char *cmdline; + int image_size; + + target_phys_addr_t entry; +}; + +void cris_load_image(CPUState *env, struct cris_load_info *li); |