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