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

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