mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
cb9c377f54
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
242 B
C
15 lines
242 B
C
#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
|