Skip to content

Commit

Permalink
Merge pull request #412 from ogamespec/master
Browse files Browse the repository at this point in the history
Update DataPathControl.cs
  • Loading branch information
ogamespec committed Jan 15, 2022
2 parents bbfbdb3 + 9633b60 commit 4c6c927
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Breaks6502/BreaksDebug/DataPathControl.cs
Expand Up @@ -610,6 +610,23 @@ private void DrawLabels(Graphics gr)
{
gr.DrawString("SUMS", labelFont, labelBrush, point);
}

if (cur_info.n_ACIN == 0)
{
gr.DrawString("+C", labelFont, labelBrush, new Point(300, 70));
}
if (cur_info.n_DAA == 0)
{
gr.DrawString("DAA", labelFont, labelBrush, new Point(367, 52));
}
if (cur_info.n_DSA == 0)
{
gr.DrawString("DSA", labelFont, labelBrush, new Point(367, 72));
}
if (cur_info.n_1PC == 0)
{
gr.DrawString("+1", labelFont, labelBrush, new Point(635, 64));
}
}

public void ShowCpuCommands(BogusSystem.CpuDebugInfo_Commands info)
Expand Down

0 comments on commit 4c6c927

Please sign in to comment.