• The main program loop
    Hello, I use the C51 compilers to compile C programs to the 87C51 microcontroller. When i compile my file, te compiler makes the program as endless loop ( The program runs continuously ). How can compile...
  • Program does not jump to Main()
    Hello there! The problem I'm facing is quite simple: when I try to debug my program it doesn't jump to the main function. All I can see in the debug window after the code is loaded into the uC is...
  • Program won't run to Main
    I'm running an LPC2144, and my program won't run to main - it freezes up in a 3-line loop in the disassembly window - a BMI instruction in my boot block at 0x7FFFD2DA loops back to 0x7FFFD2D6 and repeats...
  • main( ) function
    I want to know something regarding main function. For an application, the syntax for main function is something like: void main(void) { // ... // code // ... } but if we write as: int main(void...
  • Problems using two programs
    I have created two separate programs for my AT89C51ED2: bootloader (0x0000) and normal program (0x2000). I use an absolute memory addressed variable to distinguish between the two modes of operation so...