OK then,
This puts a byte at location 50 (dec) in ram
this puts array of 50 where PBasic puts itCode:String_1 VAR BYTE 50 ' Array to hold string.
this puts array of 50 at location $100, (100hex, 256 dec)Code:String_1 VAR BYTE [50] ' Array to hold string.
Code:String_1 VAR BYTE [50] $100 ' Array to hold string.
At the bottom of the generated LIST file is a listing of the mem locations for ram and prog mem
there you can see the var's location and alotted space left between arrays.
Don




Bookmarks