• interrupt with sdcc
    hi members.... i want to use interrupts with sdcc. i write assembler programms with c at the moment. this work is a part of a project. i know the souce code for assembler but not the c source. how...
  • Keil vs SDCC
    I looking at different compilers for working on a C8051F040. At the moment I'm split between SDCC and Keil. I'm within a budget and thus can do with an extra $2400 by using SDCC. But I don't want ot...
  • delay at sdcc cross compiler
    hi members... i have a question today. i'm working with the sdcc cross compiler and metabolize c in assembler. i want to delay some programms but i can't use the function sleep or wait in sdcc. i...
  • syntax changes from SDCC to KEIL
    I am currently in the process of porting my C program from SDCC to Keil because of several reasons. (bugs, lack of support, limitations) What I would like to know is how some of the syntax changes...
  • error
    #include<reg51.h> void boud_rate() { SCON = 0x50; TMOD = 0x20; /* timer 1, mode 2, 8-bit reload */ TH1 = 0xFD; /* reload value for 2400 baud */ TR1 = 1; TI = 1; } char serial_receive() { char chr;...