Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215645
b: refs/heads/master
c: ab85b12
h: refs/heads/master
i:
  215643: 1ed6f10
v: v3
  • Loading branch information
Avi Kivity committed Oct 24, 2010
1 parent 5424226 commit 482b326
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3885d530b0eb26c82b6f085c181442b0aa6f8fed
refs/heads/master: ab85b12b1a7fd125588f9447653a71ec8e1b5024
16 changes: 8 additions & 8 deletions trunk/arch/x86/kvm/emulate.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
*/

/* Operand sizes: 8-bit operands or specified/overridden size. */
#define ByteOp (1<<16) /* 8-bit operands. */
#define ByteOp (1<<0) /* 8-bit operands. */
/* Destination operand type. */
#define ImplicitOps (1<<17) /* Implicit in opcode. No generic decode. */
#define DstReg (2<<17) /* Register operand. */
#define DstMem (3<<17) /* Memory operand. */
#define DstAcc (4<<17) /* Destination Accumulator */
#define DstDI (5<<17) /* Destination is in ES:(E)DI */
#define DstMem64 (6<<17) /* 64bit memory operand */
#define DstMask (7<<17)
#define ImplicitOps (1<<1) /* Implicit in opcode. No generic decode. */
#define DstReg (2<<1) /* Register operand. */
#define DstMem (3<<1) /* Memory operand. */
#define DstAcc (4<<1) /* Destination Accumulator */
#define DstDI (5<<1) /* Destination is in ES:(E)DI */
#define DstMem64 (6<<1) /* 64bit memory operand */
#define DstMask (7<<1)
/* Source operand type. */
#define SrcNone (0<<4) /* No source operand. */
#define SrcImplicit (0<<4) /* Source operand is implicit in the opcode. */
Expand Down

0 comments on commit 482b326

Please sign in to comment.