home *** CD-ROM | disk | FTP | other *** search
- ;---------------------- WORDOUT.ASM -----------------------
- ; Wortweises Schreiben eines IO-Ports unter BCI Pascal
- ; Procedure WordOut (Adresse,Daten)
- ;---------------------- 1987 by M.A. ----------------------
- include outport.mac ; Macrodefinitionen
- public wordout
- code segment byte public 'PASCAL' ; ... Grüße an BCI ...
- assume cs:code
-
- wordout proc far
- anfang
- out dx,ax
- ende
- wordout endp
-
- code ends
- end
- ;--------------------- Ende WORDOUT.ASM -------------------