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

  1. version    equ    0
  2.  
  3. ;History:23,1
  4.  
  5.     include    defs.asm
  6.  
  7. code    segment    word public
  8.     assume    cs:code, ds:code
  9.  
  10. ;This source code is for both 8-bit and 16-bit boards.  The 8-bit boards
  11. ;must be accessed 8 bits at a time, and the 16-bit boards must be accessed
  12. ;16 bits at a time.  Since the 16-bit access is a one-byte instruction
  13. ;(out dx,ax), it seems too wasteful to use a subroutine.  Therefore, we
  14. ;compile two different drivers.  Modify the following equate for the
  15. ;current driver:
  16.  
  17.     include    io16.asm
  18. repouts    equ    obufeven
  19. repins    equ    ibufeven
  20.  
  21.     include    kodiak.inc
  22.  
  23.     include    kodiak.asm
  24.  
  25. code    ends
  26.  
  27.     end
  28.  
  29.