• Can't link assemler code with c-code
    I'm not that much into assemler, so I try to reuse existing asm-code as i2c-driver. I've found original Philips code for that. I try now to link it with c-code but get always linker warnings. Any help...
  • 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
  • Shared data variable?
    Hi, I have a question about shared memory... I have a bootloader and a program running on a 8051 (different projects,burnt together on the chip at different locations) and I need them to share a...
  • 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...