blob: de4b9d2bc39d39f714f5404c8fd7c59d1caa9118 (
plain) (
tree)
|
|
#ifndef E500_CCSR_H
#define E500_CCSR_H
#include "hw/sysbus.h"
#include "qom/object.h"
struct PPCE500CCSRState {
/*< private >*/
SysBusDevice parent;
/*< public >*/
MemoryRegion ccsr_space;
};
typedef struct PPCE500CCSRState PPCE500CCSRState;
#define TYPE_CCSR "e500-ccsr"
DECLARE_INSTANCE_CHECKER(PPCE500CCSRState, CCSR,
TYPE_CCSR)
#endif /* E500_CCSR_H */
|