Hi Everyone,
I was trying to interface two computers through the
parallel port. But when i send data from one computer
say A to another computer B. Then I dont receive the
data at computer B. I am using port 378 for
tranferring and receiving.
Computer A Program
.model small
.stack 100h
.data
.code
.startup
mov dx,0378h
mov al,'a'
out dx,al
.exit
end
Computer B Program
.model small
.stack 100h
.data
.code
.startup
mov dx,0378h
in al,dx
mov ah,2
mov dl,al
int 21h
.exit
end
Computer A sends the data and Computer B recieves the
data
Thanxs
Faisal
I was trying to interface two computers through the
parallel port. But when i send data from one computer
say A to another computer B. Then I dont receive the
data at computer B. I am using port 378 for
tranferring and receiving.
Computer A Program
.model small
.stack 100h
.data
.code
.startup
mov dx,0378h
mov al,'a'
out dx,al
.exit
end
Computer B Program
.model small
.stack 100h
.data
.code
.startup
mov dx,0378h
in al,dx
mov ah,2
mov dl,al
int 21h
.exit
end
Computer A sends the data and Computer B recieves the
data
Thanxs
Faisal