qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio
at master 14 lines 246 B view raw
1#ifndef HW_MIPS_BIOS_H 2#define HW_MIPS_BIOS_H 3 4#include "qemu/units.h" 5#include "cpu.h" 6 7#define BIOS_SIZE (4 * MiB) 8#ifdef TARGET_WORDS_BIGENDIAN 9#define BIOS_FILENAME "mips_bios.bin" 10#else 11#define BIOS_FILENAME "mipsel_bios.bin" 12#endif 13 14#endif