home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / Asm / 86LIB3.ZIP / EXIT.8 < prev    next >
Encoding:
Text File  |  1989-01-14  |  207 b   |  6 lines

  1. _exit:
  2.   mov al,0          ; zero value indicates successful program execution
  3.   mov ah,04ch       ; MSDOS function number for EXIT
  4.   int 33            ; all MSDOS calls go through this interrupt
  5.   ret
  6.