am i to understand
bitwise = 1100 0000 to set port a.0 and a.1

i am not familiar with term bitwise,

whats the 3 do ?

is this what you meant

porta=porta 11000000 3.

is there a comand in picbasic manual i can refrance for examples , ie look up pulsin , and get syntax explained


i can also SYMBOL them both seprate and activate them in one line as follows.

__
symbol a.0 = FLTS
symbol a.1 = RLTS

'next code line jumps to activating
flts: rlts = 1
'or is it corect this way
flts = 1 : rlts = 1
___