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