Hello, I searched the archives but couldn't find anything relevant. I'm using an msp430x1611 and have two pieces of almost identical assembler, one works the other doesn't:
mov #88, r4 mov r4, 0(r15) mov @r15, 0(r15) where 0(r15) offsets to 0x1114 mov #88, r4 mov r4, 0(r5) mov @r5, 0(r15) where 0(r5) offsets to 0x10FE Reading the contents of memory the top snippet correctly contains #88, the second contains 0xFFFF. The only difference is the the memory locations. I grepped the msp430 directory and couldn't find any defines for 0x10FE relating to the msp430f1611 (there was one for msp430x21x1: #define CALDCO_1MHZ_ 0x10FE /* DCOCTL Calibration Data for 1MHz */). Am I missing something here? --John
