qemu-patch-raspberry4/hw/cris/boot.h
Paolo Bonzini 47b43a1f41 hw: move private headers to hw/ subdirectories.
Many headers are used only in a single directory.  These can be
kept in hw/.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2013-04-08 18:13:16 +02:00

16 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