home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / pcmag / vol11n11.zip / LABNOT.ZIP / LABSTUB.ASM < prev    next >
Assembly Source File  |  1992-02-24  |  932b  |  29 lines

  1. ;LABSTUB.ASM
  2. ;Stub file for LABNOTES.DLL
  3. ;Copyright (c) 1992 Jay Munro
  4. ;First Published in PC Magazine June 16, 1992
  5.  
  6. DosSeg                  ;standard DOS program
  7.  
  8. .Model Small
  9. .Data
  10.    SlugLine  DB  'Labnotes.DLL Copyright (c) 1992 Jay Munro',13,10
  11.              DB  'for use with Microsoft Visual Basic.',13,10
  12.              DB  'First Published in PC Magazine June 16, 1992',13,10,'$'
  13.  
  14. .Stack          64              ;little stack needed
  15. .Code
  16.  
  17. Start:
  18.         Mov     AX,@DATA
  19.         Mov     DS,AX
  20.         Assume  DS:@Data
  21.         Mov     DX, Offset SlugLine    ;print the error of their ways
  22.                                 ;DS:DX enters pointing toward string to print
  23.         Mov     AH,9h           ;service 9, print a string
  24.         Int     21h             ;print it
  25.         Mov     AX,4C01h        ;leave peacefully
  26.         Int     21h
  27.  
  28. End     Start                   ;show dos where to begin
  29.