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

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