qemu-patch-raspberry4/hw/cris/boot.h
Paolo Bonzini 58a70f169e cris: do not use ram_size global
Use the machine properties instead.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2020-12-10 12:15:07 -05:00

17 lines
267 B
C

#ifndef HW_CRIS_BOOT_H
#define HW_CRIS_BOOT_H
struct cris_load_info
{
const char *image_filename;
const char *cmdline;
int image_size;
ram_addr_t ram_size;
hwaddr entry;
};
void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
#endif