qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

multiboot.h (445B)


      1 #ifndef QEMU_MULTIBOOT_H
      2 #define QEMU_MULTIBOOT_H
      3 
      4 #include "hw/nvram/fw_cfg.h"
      5 #include "hw/i386/x86.h"
      6 
      7 int load_multiboot(X86MachineState *x86ms,
      8                    FWCfgState *fw_cfg,
      9                    FILE *f,
     10                    const char *kernel_filename,
     11                    const char *initrd_filename,
     12                    const char *kernel_cmdline,
     13                    int kernel_file_size,
     14                    uint8_t *header);
     15 
     16 #endif