We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I define an area of memory that in 'non-volatile' so it doesn't get cleared on powerup. I do this is a module called memmap.asm like this: MyData DS 512 ;Located at 0x801C In another module, I want to declare an array of structures starting at the address of MyData. I tried this: struct tagData { BYTE Num1[32]; BYTE Num2[32]; }; struct tagData xdata MyArray[8] _at_ 0x801C But this doesn't complile. What's wrong? Thanks for any suggestions, RickL