pasm RES directive
If·more than 1 long is reserved for a variable (symbol), what syntax is used to address the 3 longs?
example:
m·· ·res· ·3
I tried m[noparse][[/noparse]0]...m[noparse][[/noparse]2] but no luck.
example:
m·· ·res· ·3
I tried m[noparse][[/noparse]0]...m[noparse][[/noparse]2] but no luck.

Comments
-Phil
I am trying to understand it's use in assembly.· If I understand correctly, the following line reserves one long addressed as "m".
m·· res· 1
how would additional longs be addressed if more than one long were reserved?
movs loader,#m 'Initialize pointer ... loader mov register,0-0 'Load register with contents of array m. add loader ,#1 'Increment pointer into m. ...-Phil
thanks,·thats what i was looking for.
Phil,
thanks for the example.
agfa