• shared variable slots
    The feature of shared variables in C is a wonderful saver of DATA space. Can the same be implemented in assembler ? Erik
  • Sharing data and overlayable segments
    I'm using the Keil C51 Tools and have successfully written 8051 programs only in assembly language. Now I need add C code to my assembly program. After the i add C code to my assembly code Keil C51...
  • Variable sharing in RTX-51 Tiny
    Hi, I am using a global variables for producing timeouts as follows... volatile tDByte TimerStart=0,TimerEnd=0,TimerInitiated=FALSE,Timeout=FALSE; there are two tasks....task1:Clock and...
  • Sharing variable (struct) in Bootloader with Application
    I am wanted to write a bootloader. If an application is already programmed, it transfers control to the bootloader with an interrupt call (_trap_0x7F). The bootloader needs several informations form the...
  • To share macros
    Hello!!! I program in A51 with C8051F020. In my program, I use several modules. And in thes modules, I created some macros. My question is : How is it possible to share macros from one module...