forked from tgingold-cern/cheby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testfiles - Add generation of C header files for blkprefix 3
- Loading branch information
1 parent
3ce5075
commit 448db20
Showing
2 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#ifndef __CHEBY__BLKPREFIX3__H__ | ||
#define __CHEBY__BLKPREFIX3__H__ | ||
|
||
#include <stdint.h> | ||
|
||
#define BLKPREFIX3_SIZE 12 /* 0xc */ | ||
|
||
/* (comment missing) */ | ||
#define BLKPREFIX3_B1 0x0UL | ||
#define BLKPREFIX3_B1_SIZE 8 /* 0x8 */ | ||
|
||
/* (comment missing) */ | ||
#define BLKPREFIX3_B1_R2 0x0UL | ||
#define BLKPREFIX3_B1_R2_F1_MASK 0x7UL | ||
#define BLKPREFIX3_B1_R2_F1_SHIFT 0 | ||
#define BLKPREFIX3_B1_R2_F2 0x10UL | ||
|
||
/* (comment missing) */ | ||
#define BLKPREFIX3_B1_R3 0x4UL | ||
#define BLKPREFIX3_B1_R3_F1_MASK 0x7UL | ||
#define BLKPREFIX3_B1_R3_F1_SHIFT 0 | ||
#define BLKPREFIX3_B1_R3_F2 0x10UL | ||
|
||
/* (comment missing) */ | ||
#define BLKPREFIX3_B2 0x8UL | ||
#define BLKPREFIX3_B2_SIZE 4 /* 0x4 */ | ||
|
||
/* (comment missing) */ | ||
#define BLKPREFIX3_B2_R3 0x8UL | ||
#define BLKPREFIX3_B2_R3_F1_MASK 0x7UL | ||
#define BLKPREFIX3_B2_R3_F1_SHIFT 0 | ||
|
||
#ifndef __ASSEMBLER__ | ||
struct blkprefix3 { | ||
/* [0x0]: BLOCK (comment missing) */ | ||
/* [0x0]: REG (rw) (comment missing) */ | ||
uint32_t r2; | ||
|
||
/* [0x4]: BLOCK (comment missing) */ | ||
/* [0x0]: REG (rw) (comment missing) */ | ||
uint32_t r3; | ||
|
||
/* [0x8]: BLOCK (comment missing) */ | ||
struct b2 { | ||
/* [0x0]: REG (rw) (comment missing) */ | ||
uint32_t r3; | ||
} b2; | ||
}; | ||
#endif /* !__ASSEMBLER__*/ | ||
|
||
#endif /* __CHEBY__BLKPREFIX3__H__ */ |