mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
7948b4b009
This simplifies the scripted execution of the next patch. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
17 lines
337 B
C
17 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 */
|