Well, Yes and No.
PBP can not access anything on the external bus directly. The compiler is limited to the first 64K of memory.
Which means that it can't even use the upper 64k of the 128k already on your 18F8722.
>> My question is, will PBP address greater amounts of RAM then what is included on the chip
The external memory can't be mapped to RAM space. It only extends "Program Space". But if the external memory is Static RAM, it can be read from and written to, by using the TBLRD and TBLWT instructions, the same as if you were reading/writing to Flash.
With a few ingenious ASM macros, you could easily create a program that uses that space for storage, but you can't do it directly with PBP.
<br>
Bookmarks