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