Quote Originally Posted by Darrel Taylor View Post
Just keep in mind that no matter how much Flash the PIC has, PBP can only use the first 64kb of it. Same as your 4620.

The additional space can be used to store data, but not PBP program code.
<br>
Quote Originally Posted by skimask
Really?
No, not really. That didn't come out right at all.

The space above 64K can't be accessed by the READCODE statement. So your string data has to be in the first 64K. The space above 64k can store data, but READCODE can't use it. It's possible to write an ASM routine that does the same thing as readcode and uses the upper space, but it's not built in to PBP.

Hope that clarifies it a bit.
<br>