I have an old program that was created with Pic Basic pro... now it seems not to work with PBP3. the MSB is no longer supported?
Code:if (Thefile & MSB)THEN
high pindata
else
low pindata
endif
Printable View
I have an old program that was created with Pic Basic pro... now it seems not to work with PBP3. the MSB is no longer supported?
Code:if (Thefile & MSB)THEN
high pindata
else
low pindata
endif
Hi,
No, MSB is not a reserved word in PBP3 (and I don't recall it being so in previouse versions either). What is you want to achieve? Are you possibly thinking of .HighByte?
/Henrik.
I found my problem. I forgot to declare MSB.
Code:MSB con $8000