Waqar - 2011-05-22

Hi Guys,
I am unable to transfer a byte from one port to another

;Chip Settings
#chip 90s8535,8
Dir PortB in
Dir PortA out
Do Forever
    PortA = PortB
loop

However following code is working perfect (for one bit)

;Chip Settings
#chip 90s8535,8
Dir PortB.0 in
Dir PortA.0 out
Do Forever
    PortA.0 = PortB.0
loop