Skip to content

Commit

Permalink
Added dummy 0F 01 /1 SIDT opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed May 31, 2021
1 parent 6b05e42 commit f03fb65
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 @@ -18,6 +18,12 @@
_0f_0x01:
nextop = F8;
switch((nextop>>3)&7) {
case 1: /* SIDT Ed */
GET_ED;
ED->word[0] = 0xfff; // dummy return, like "disabled"
ED->word[1] = 0;
ED->word[2] = 0;
break;
case 4: /* SMSW Ew */
GET_ED;
// dummy for now... Do I need to track CR0 state?
Expand Down

0 comments on commit f03fb65

Please sign in to comment.