home *** CD-ROM | disk | FTP | other *** search
- ;---------------------- WORDIN.ASM ------------------------
- ; Wortweises Lesen eines IO-Ports unter BCI Pascal
- ; Function WordIn (Adresse) : integer
- ;--------------------- 1987 by M.A. -----------------------
- include inport.mac ; Macrodefinitionen
- public wordin
- code segment byte public 'PASCAL' ; ... Grüße an BCI ...
- assume cs:code
-
- wordin proc far
- anfang
- in ax,dx
- ende
- wordin endp
-
- code ends
- end
- ;--------------------- Ende WORDIN.ASM --------------------