home *** CD-ROM | disk | FTP | other *** search
- ;---------------------- 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 --------------------