Statistics
| Branch: | Revision:

root / hw / cris / boot.h @ 47b43a1f

History | View | Annotate | Download (242 Bytes)

1
#ifndef _CRIS_BOOT_H
2
#define HW_CRIS_BOOT_H 1
3

    
4
struct cris_load_info
5
{
6
    const char *image_filename;
7
    const char *cmdline;
8
    int image_size;
9

    
10
    hwaddr entry;
11
};
12

    
13
void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
14

    
15
#endif