• C51 - Compiler Problem?
    #include <REGX52.h> unsigned char i; float x; void main() { x=0; for(i=1;i<=30;i++) {x+=1.3;} } This should ideally produce an output of x=39. But in debugger the value is shown as x=38.999999...
  • Reentrant compiler directive for C51 compiler
    I am using an inhouse developed multi tasking scheduler for 8051. Every function that I write, I need to put reentrant on it. Is it possible to add a compiler directive like the c166 compilers for c51...
  • problem invoking C51 compiler from gnu make
    Hello, I am running NT4(service pack 6) using the DOS shell cmd.exe. I am trying to invoke the C51 compiler version 5.5 (8051 Development Tools) using the gnu make utility version 3.79.1. I have...
  • c51: compiling in turbo compiler and keil compiler
    this is praveen frm india i am novice to embedded systems and keil compiler.my query is that "if i want to output hello world through turbo compiler it's easy, how shud i do the same with keil compiler...
  • C51 'in-line' compilation
    Hi! I've a particular module within a large project in which I wish to avoid making jumps to code segments from other modules (including C51 library code). Is there a means by which I can ensure that...