• specify a code string to certain memory address
    I have a string of code type defined in a function: void func1 { unsigned char code string_0[]="a string"; unsigned char stringLen; .... } The func1 is located to address 0xF000. But string_0...
  • specify a code string to certain memory address
    I have a string of code type defined in a function: void func1 { unsigned char code string_0[]="a string"; unsigned char stringLen; .... } The func1 is located to address 0xF000. But string_0...
  • string functions in AT89C4051
    Hai, Iam new to Embedded systems.iam using at89c4051 i have a problem. Problem: P3.3 is connected to a bulb. and my program is sbit sw1 P3^3 void main() { P3=0xff; for(i=0;i<10000;i++); SW1...
  • string functions in AT89C4051
    Hai, Iam new to Embedded systems.iam using at89c4051 i have a problem. Problem: P3.3 is connected to a bulb. and my program is sbit sw1 P3^3 void main() { P3=0xff; for(i=0;i<10000;i++); SW1...
  • How write relocatable c-function code
    Hello. I want to relocate some function’s from Flash to a different position in PSRAM for a bootloader. The problem is: Keil generates absolute jumps in the original function. With relative jumps...