PDA

View Full Version : Help PBP code?



Mike, K8LH
- 17th May 2018, 01:55
Which manual contains information for the statements in the code excerpt below, please?

TIA... Mike


;----------------------Strings------------------------------------
LCDSTR?CBB macro Xin ,Yin ,Bin
MOVE?CB Xin , _POSX
MOVE?BB Yin , _POSY
MOVE?CB high Bin, FSR1H ;load highbyte
MOVE?CB low Bin, FSR1L ;load low byte
L?CALL GLCD_str_out
endm
LCDSTR?CCB macro Xin ,Yin ,Bin
MOVE?CB Xin , _POSX
MOVE?CB Yin ,_POSY
MOVE?CB high (Bin), FSR1H ;load highbyte
MOVE?CB low (Bin), FSR1L ;load low byte
L?CALL GLCD_str_out
endm
LCDSTR?BBB macro Xin ,Yin ,Bin
MOVE?B Xin, _POSX
MOVE?B Yin, _POSY
MOVE?CB high Bin, FSR1H ;load highbyte
MOVE?CB low Bin, FSR1L ;load low byte
L?CALL GLCD_str_out
endm

richard
- 17th May 2018, 02:25
no manual exists

start here
http://support.melabs.com/forum/picbasic-pro-compiler-3-0-and-later/usercommand

Mike, K8LH
- 17th May 2018, 14:48
Ah... Thank you, richard...