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