Skip to content

Commit

Permalink
Fix register access for 16-bit mov instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasg committed Jul 9, 2016
1 parent 6ee4994 commit cffb61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/X86/X86MappingInsnOp.inc
Original file line number Diff line number Diff line change
Expand Up @@ -5851,11 +5851,11 @@
},
{ /* X86_MOV8ao16, X86_INS_MOV: mov{b} al, $src */
0,
{ CS_AC_IGNORE, CS_AC_READ, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},
{ /* X86_MOV8ao32, X86_INS_MOV: mov{b} al, $src */
0,
{ CS_AC_IGNORE, CS_AC_READ, 0 }
{ CS_AC_WRITE, CS_AC_READ, 0 }
},
{ /* X86_MOV8ao64, X86_INS_MOVABS: movabs{b} al, $src */
0,
Expand Down

0 comments on commit cffb61e

Please sign in to comment.