Help PBP code?


Closed Thread
Results 1 to 3 of 3

Thread: Help PBP code?

  1. #1
    Join Date
    Aug 2005
    Location
    Michigan, USA
    Posts
    224

    Default Help PBP code?

    Which manual contains information for the statements in the code excerpt below, please?

    TIA... Mike

    Code:
    ;----------------------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

  2. #2
    Join Date
    May 2013
    Location
    australia
    Posts
    2,383


    Did you find this post helpful? Yes | No

    Default Re: Help PBP code?

    Warning I'm not a teacher

  3. #3
    Join Date
    Aug 2005
    Location
    Michigan, USA
    Posts
    224


    Did you find this post helpful? Yes | No

    Default Re: Help PBP code?

    Ah... Thank you, richard...

Similar Threads

  1. Serial problem between BasicStamp code and PBP code
    By AllanZilkowsky in forum mel PIC BASIC Pro
    Replies: 22
    Last Post: - 6th April 2014, 03:15
  2. pbp code
    By samixta in forum PBP Wish List
    Replies: 2
    Last Post: - 2nd July 2011, 21:53
  3. pbp code for DS3234
    By itsssyam in forum General
    Replies: 2
    Last Post: - 23rd December 2009, 11:31
  4. How much code space do PBP statements use.
    By Darrel Taylor in forum Code Examples
    Replies: 5
    Last Post: - 13th February 2009, 22:31
  5. Making PBP code more modular
    By forgie in forum General
    Replies: 30
    Last Post: - 25th October 2005, 17:24

Members who have read this thread : 1

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts