Hi Robert,
You can force PBP to drop variables in specific RAM locations if you prefer.
SEG_DATA VAR BYTE[256] BANK1 : Starts your array in bank 1 at 100H.
Or SEG_DATA VAR BYTE[256] $300 : Starts your array in bank 3 at 300H.
It's all covered in your manual under RAM Usage in the back section.
Try one of the above, compile, then look in the .LST file. You can see where PBP is placing your variables in RAM.
Bookmarks