Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
12/21/01 23:14
Read: times


 
#17970 - How to set array address
I have an asm module where I define a block of memory in xdata that is non-volatile like this:
MyArray DS 512

I want to create an array of structs that begins at the address of MyArray.

typedef struct data
{
byte nNum1[32];
byte nNum2[32];
} ARRAYDATA;

xdata ARRAYDATA Array[8] _at_ MyArray;

How can I do this?




List of 4 messages in thread
TopicAuthorDate
How to set array address            01/01/70 00:00      
RE: How to set array address            01/01/70 00:00      
RE: How to set array address            01/01/70 00:00      
RE: How to set array address            01/01/70 00:00      

Back to Subject List