summaryrefslogtreecommitdiff
path: root/hw/cris/boot.h
blob: c4d3fa6f6f614ddef68ba01894dc6c2928a5d0ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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