Hi there!
I want to ask if there is any code for assembly that terminate the program, lets say in the middle of a loop? The code for vb is "End" to terminate the program in the middle of anything. If you guys know please do post them here. Thanks!
Printable View
Hi there!
I want to ask if there is any code for assembly that terminate the program, lets say in the middle of a loop? The code for vb is "End" to terminate the program in the middle of anything. If you guys know please do post them here. Thanks!
If you're doing 32 bit windows programming then you would exit the way you normally do with other langauges. If you're doing it in 16 bit then you would use int 21h.Quote:
Originally Posted by RedDevil
If memory serves MASM also had ExitProcess.
Phreak