• combine two projects with diff optimizations
    1. I have two projects. One is time critical so I have optimized it with cross-module+level 3+ time. 2. Second is not time critical & want to optimize for size- cross mod+microlib+level2. Can...
  • same variable for two different
    Hi All, I have a IIC routine file i2c.asm,which has routines to read and write into a IIC device. Now I am using the i2c.asm for two devices RTC and serial memory which are connected on different...
  • Variables that overlap in the same memory space possible?
    Currently I have a set of structures represented as variables such as: MYTYPE xdata A; MYTYPE xdata B; MYTYPE xdata C; MYTYPE xdata D; MYTYPE xdata E; MYTYPE xdata F; MYTYPE xdata G; MYTYPE xdata...
  • Installing diff. versions simultaneoulsy
    Any of you have experience of maintaining several versions of the DK51 Dev. Kit in a computer? If it is possible, how can you do it without messing up with the uninstalling procedures? Thanks in...
  • variables at same memory places
    I have declared in source file src1.c following variables. xdata unsigned char keybuffer[8]; unsigned int keys; unsigned char keyctr; I have an another source file src2.c and I want to declare...