home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / packetdrivers.tar.gz / pd.tar / src / wd8003e.asm < prev    next >
Assembly Source File  |  1995-06-25  |  993b  |  41 lines

  1. version    equ    0
  2.  
  3. ;  Copyright, 1992, Russell Nelson, Crynwr Software
  4.  
  5. ;   This program is free software; you can redistribute it and/or modify
  6. ;   it under the terms of the GNU General Public License as published by
  7. ;   the Free Software Foundation, version 1.
  8. ;
  9. ;   This program is distributed in the hope that it will be useful,
  10. ;   but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ;   GNU General Public License for more details.
  13. ;
  14. ;   You should have received a copy of the GNU General Public License
  15. ;   along with this program; if not, write to the Free Software
  16. ;   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.     include    defs.asm
  19.  
  20. code    segment para public
  21.     assume    cs:code, ds:code
  22.  
  23.     org    100h
  24. start:
  25.     jmp    start_1
  26.  
  27. copyleft_msg    label    byte
  28.  db "The WD8003E driver has been renamed ``SMC_WD''."
  29.  db CR,LF,'$'
  30.  
  31. start_1:
  32.     mov    dx,offset copyleft_msg
  33.     mov    ah,9
  34.     int    21h
  35.  
  36.     int    20h
  37.  
  38. code    ends
  39.  
  40.     end    start
  41.