Skip to content

Commit

Permalink
Alignment in operand.h (better readability)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nukem9 committed Apr 13, 2015
1 parent c646b48 commit 3885286
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Operand.h
Expand Up @@ -40,25 +40,25 @@ struct InstOperand

struct
{
bool Disp;
xed_uint64_t DispVal;
MEMSIZE DispWidth;
bool DispRipRelative;
bool Disp;
xed_uint64_t DispVal;
MEMSIZE DispWidth;
bool DispRipRelative;

bool Scale;
xed_uint64_t ScaleVal;
bool Scale;
xed_uint64_t ScaleVal;

bool Base;
REG BaseVal;
bool Base;
REG BaseVal;

bool Index;
REG IndexVal;
bool Index;
REG IndexVal;
} Mem;

struct
{
USHORT Selector;
xed_int_t Offset;
USHORT Selector;
xed_int_t Offset;
} Sel;
};
};
Expand Down

0 comments on commit 3885286

Please sign in to comment.