historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/hw/cris/boot.h
2024-01-16 11:20:27 -06:00

15 lines
242 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;
hwaddr entry;
};
void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
#endif