Skip to content

Commit

Permalink
Added dummy SLDT 0F 00 /0 opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed May 31, 2021
1 parent f03fb65 commit 268166b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/emu/run0f.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
_0f_0x00: /* VERx Ed */
nextop = F8;
switch((nextop>>3)&7) {
case 0: /* SLDT Ew */
GET_EW;
EW->word[0] = 0;
if((nextop&0xC0)==0xC0)
EW->word[1] = 0;
break;
case 4: //VERR
case 5: //VERW
GET_EW;
Expand Down

0 comments on commit 268166b

Please sign in to comment.