Is it possible to setup a block of RAM using constants?
<I am going to use compiler commands which make what I want to do obvious but they are just made up and/or mixed with old assembler commands in order to demonstrate what I want.>
not exactly sure what you want, why program in assembler ?
its possible dough but its often slow or developing software, update or remove bugs.
Never the less it is possible.
You might perhaps use a fixed array of char (bytes).
Then read a little bit about pointers in C++ ( http://www.cplusplus.com/doc/tutorial/pointers/ )
A pointer will get you the offset of where the array is stored
Pointers can point to objects, functions, variables,...
Basically they point to the memory location
I think before you start assembler, first try c++
It might sound cool to be able to do it (i one could write assembler for the MSX), but its not an easy road
It might require lots of time to learn, and you be able to create small things with it, the same investment in other programming languages leads programmes who can do more (but 'might' not be as fast as assembler, on the other hand these program languages do a good job of translating code to assembler too, so you can focus better on higher goals and achieve more with less code to invent yourself.
You seem to be trying to control the layout of your data. The way to do that is to define your variables and types correctly so that the correct space is allocated for them, rather than trying to tell the linker how to do its job.
cowasaki:
So that I could have say the text for the sketch compiled straight to the EEPROM rather than programming space?