cris-boot.h 242 B

123456789101112131415
  1. #ifndef _CRIS_BOOT_H
  2. #define HW_CRIS_BOOT_H 1
  3. struct cris_load_info
  4. {
  5. const char *image_filename;
  6. const char *cmdline;
  7. int image_size;
  8. hwaddr entry;
  9. };
  10. void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
  11. #endif