• simple 8051 compilation
    I am debugging and looking at code generated by the C compiler (for a Silabs 8051F312) and I am seeing it go to the middle of code in breaking from a case statement. Of course its infuriating ... so I...
  • Problems with compiling aa simple & statement
    I'm having problems with the following simple line of code and was wondering if I could get a little insight as to what the problem may be.. My code.. My variables SystemStatus is declared as...
  • simple assembly
    new to keil . help me how to write a simple assembly and c program and how to watch it the result in keil simulator
  • inline \ MACROs
    Hi, I want to avoid the CALL \ RET overhead of a certain function which is called only once in my program. I understand the uVision compiler does not support the inline keyword ( http://www.keil...
  • inline code
    I have a macro which is supposed to service the internal watchdog in a Dallas 87C520. The code looks like this: #define clearWatchdog() EA=0; TA=0xAA; TA=0x55; RWT=1; EA=1 The problem is that instead...