Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Last active October 8, 2016 23:54
Show Gist options
  • Select an option

  • Save toptensoftware/b2aa83575704cbccfe469a05c43206eb to your computer and use it in GitHub Desktop.

Select an option

Save toptensoftware/b2aa83575704cbccfe469a05c43206eb to your computer and use it in GitHub Desktop.
Handling DOS Exit Process call.
public override void RaiseInterrupt(byte interruptNumber)
{
if (interruptNumber == 0x21 && _cpu.ah == 0x4C)
{
_stopCondition = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment