home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1988
/
02
/
bcitip
/
byteout.asm
< prev
next >
Wrap
Assembly Source File
|
1987-12-02
|
543b
|
19 lines
;---------------------- BYTEOUT.ASM -----------------------
; Byteweises Schreiben eines IO-Ports unter BCI Pascal
; Procedure ByteOut (Adresse,Daten)
;--------------------- 1987 by M.A. -----------------------
include outport.mac ; Macrodefinitionen
public byteout
code segment byte public 'PASCAL' ; ... Grüße an BCI ...
assume cs:code
byteout proc far
anfang
out dx,al
ende
byteout endp
code ends
end
;-------------------- Ende BYTEOUT.ASM --------------------