• Locating the end of the used FlashROM
    After the RAM-Tests are done now I want to check the ROM :) After converting the HEX-File "project.h86" to a BIN-File I have calculated and appended a CRC-Checksum to it and re-converted the BIN-File...
  • Variable at fix address
    How to locate 1) structure 2) array of structure 3) any variable like char,int,long to a specific memory location and how declare its extern prototype regards... Yogesh.
  • Structure fields & RAM variables on the same address
    I have a structure with various fields. And there are few global variables. The structure fields and the global variables (basically status-flags) denote same information. It doesnt make sense to have...
  • Local varible in same address
    Hi All I write a function like this test.c void a(U8 val) { U8 ch=0; dev[ch].fun1(val); <--this is a function pointer , it will call the b function dev[ch].fun2(val); <--Fail here ...
  • 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...