12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #ifndef IFXPMU_REGDEF_H
- #define IFXPMU_REGDEF_H 1
- #include "Ifx_TypesReg.h"
- typedef struct _Ifx_PMU_ID_Bits
- {
- unsigned int MODREV:8;
- unsigned int MODTYPE:8;
- unsigned int MODNUMBER:16;
- } Ifx_PMU_ID_Bits;
- typedef union
- {
-
- unsigned int U;
-
- signed int I;
-
- Ifx_PMU_ID_Bits B;
- } Ifx_PMU_ID;
- typedef volatile struct _Ifx_PMU
- {
- unsigned char reserved_0[8];
- Ifx_PMU_ID ID;
- unsigned char reserved_C[245];
- } Ifx_PMU;
- #endif
|