• Define variables in assembly file
    How do define short, byte and integer variables in the startup.s file? what are names of this directives?
  • Defining a Variable
    how can i define a byte or bit variable in ASM. as we use in C e.g char a = 0; bit TimeStop = 0; unsigned char sec=55;
  • 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 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...
  • Multiple declaration of the same variable
    I builded a small project as follows: ============================= int a; int a; // Yes the same variable declared in the same way main() { ...// anything } ============================...