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

alpha_sys.h (544B)


      1/* Alpha cores and system support chips.  */
      2
      3#ifndef HW_ALPHA_SYS_H
      4#define HW_ALPHA_SYS_H
      5
      6#include "target/alpha/cpu-qom.h"
      7#include "hw/pci/pci.h"
      8#include "hw/pci/pci_host.h"
      9#include "hw/boards.h"
     10#include "hw/intc/i8259.h"
     11
     12
     13PCIBus *typhoon_init(MemoryRegion *, qemu_irq *, qemu_irq *, AlphaCPU *[4],
     14                     pci_map_irq_fn, uint8_t devfn_min);
     15
     16/* alpha_pci.c.  */
     17extern const MemoryRegionOps alpha_pci_ignore_ops;
     18extern const MemoryRegionOps alpha_pci_conf1_ops;
     19extern const MemoryRegionOps alpha_pci_iack_ops;
     20
     21#endif