home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1988 / 02 / bcitip / byteout.asm < prev    next >
Assembly Source File  |  1987-12-02  |  543b  |  19 lines

  1. ;---------------------- BYTEOUT.ASM -----------------------
  2. ;    Byteweises Schreiben eines IO-Ports unter BCI Pascal
  3. ;            Procedure ByteOut (Adresse,Daten)
  4. ;--------------------- 1987 by M.A. -----------------------
  5. include outport.mac                  ; Macrodefinitionen
  6. public byteout
  7. code segment byte public 'PASCAL'   ; ... Grüße an BCI ...
  8. assume  cs:code
  9.  
  10. byteout proc far
  11.         anfang
  12.         out dx,al
  13.         ende
  14. byteout endp
  15.  
  16. code ends
  17. end
  18. ;-------------------- Ende BYTEOUT.ASM --------------------
  19.