Skip to content

Commit

Permalink
0xef (OUT)
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertvanheusden committed Sep 2, 2023
1 parent d60de75 commit ecece0f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions XT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4036,6 +4036,17 @@ public bool Tick()

#if DEBUG
Log.DoLog($"{prefixStr} OUT DX,AL");
#endif
}
else if (opcode == 0xef)
{
// OUT
_scheduled_interrupts |= _io.Out(GetDX(), GetAX());

cycle_count += 8; // or 12 TODO

#if DEBUG
Log.DoLog($"{prefixStr} OUT DX,AX");
#endif
}
else if (opcode == 0xeb)
Expand Down

0 comments on commit ecece0f

Please sign in to comment.