This commit is contained in:
Ben Vanik
2013-10-06 11:19:02 -07:00
committed by U-noxa-pc\noxa
parent cdb13775e2
commit 9ebbc3535f
2 changed files with 45 additions and 5 deletions

View File

@@ -332,6 +332,19 @@ typedef struct {
} VX128_4;
// kXEPPCInstrFormatVX128_5
struct {
// VD128 = VD128l | (VD128h << 5)
// VA128 = VA128l | (VA128h << 5) | (VA128H << 6)
// VB128 = VB128l | (VB128h << 5)
uint32_t VB128h : 2;
uint32_t VD128h : 2;
uint32_t : 1;
uint32_t VA128h : 1;
uint32_t SH : 4;
uint32_t VA128H : 1;
uint32_t VB128l : 5;
uint32_t VA128l : 5;
uint32_t VD128l : 5;
uint32_t : 6;
} VX128_5;
// kXEPPCInstrFormatVX128_P
struct {