home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1988
/
02
/
bcitip
/
bytein.asm
< prev
next >
Wrap
Assembly Source File
|
1987-12-02
|
550b
|
20 lines
;---------------------- 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 --------------------