Added REX C6 MOV opcode

This commit is contained in:
ptitSeb 2021-03-04 20:37:07 +01:00
parent 4b86945fff
commit be8204d8fa

View File

@ -454,6 +454,11 @@ x64emurun:
STEP
break;
case 0xC6: /* MOV Eb,Ib */
nextop = F8;
GETEB;
EB->byte[0] = F8;
break;
case 0xC7: /* MOV Ed,Id */
nextop = F8;
GETED;