File: boot.h

package info (click to toggle)
qemu 2.0.0%2Bdfsg-4~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 51,176 kB
  • sloc: ansic: 779,192; sh: 11,338; asm: 10,524; python: 7,568; cpp: 6,085; perl: 4,521; makefile: 2,240; objc: 895; xml: 526
file content (15 lines) | stat: -rw-r--r-- 242 bytes parent folder | download | duplicates (5)
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