Last active
October 8, 2016 23:54
-
-
Save toptensoftware/b2aa83575704cbccfe469a05c43206eb to your computer and use it in GitHub Desktop.
Handling DOS Exit Process call.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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