qemu-e2k/hw/ppc/e500-ccsr.h

18 lines
337 B
C

#ifndef E500_CCSR_H
#define E500_CCSR_H
#include "hw/sysbus.h"
typedef struct PPCE500CCSRState {
/*< private >*/
SysBusDevice parent;
/*< public >*/
MemoryRegion ccsr_space;
} PPCE500CCSRState;
#define TYPE_CCSR "e500-ccsr"
#define CCSR(obj) OBJECT_CHECK(PPCE500CCSRState, (obj), TYPE_CCSR)
#endif /* E500_CCSR_H */