home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PJ8_3.ZIP / LNKTBL4.ASM < prev    next >
Assembly Source File  |  1990-02-26  |  236b  |  14 lines

  1.     .model small
  2.     .data
  3. listing4_text    db    'Listing 4 terminate code',13,10,'$'
  4.  
  5. _TERM1    segment byte public 'CODE'
  6.     mov    ah,9
  7.     mov    dx,@data        ; display terminate message
  8.     mov    ds,dx
  9.     lea    dx,listing4_text
  10.     int    21h
  11. _TERM1    ends
  12.  
  13.     end
  14.