cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

boot.h (267B)


      1#ifndef HW_CRIS_BOOT_H
      2#define HW_CRIS_BOOT_H
      3
      4struct cris_load_info
      5{
      6    const char *image_filename;
      7    const char *cmdline;
      8    int image_size;
      9    ram_addr_t ram_size;
     10
     11    hwaddr entry;
     12};
     13
     14void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
     15
     16#endif