home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / altd201a.zip / MISC.ARJ / MISC / ALSTUB.ASM next >
Assembly Source File  |  1996-04-19  |  462b  |  20 lines

  1.         DOSSEG
  2.         .MODEL SMALL
  3.         .STACK 100h
  4.         .DATA
  5. Message DB      13,10
  6.         DB      'This program requires Microsoft Windows.'
  7.         DB      13,10
  8.         DB      'Thank you for choosing Greenleaf.'
  9.         DB      13,10,'$'
  10.  
  11.         .CODE
  12.         mov     ax,@Data
  13.         mov     ds,ax
  14.         mov     ah,9
  15.         mov     dx,offset Message
  16.         int     21h
  17.         mov     ah,4ch
  18.         int     21h
  19.         END
  20.