• Assembly IF statement simple question
    If I say, if a == 10 b = b * 4 + 2 if it does then do 'b = b * 4 + 2' or skip doing it? Would it be BNE or BEQ? Something tells me it's DON'T DO... Thanks
  • Assembly IF statement simple question
    If I say, if a == 10 b = b * 4 + 2 if it does then do 'b = b * 4 + 2' or skip doing it? Would it be BNE or BEQ? Something tells me it's DON'T DO... Thanks
  • Problem with 8051 compiler multiplication/compare statement
    Hi, I made a small program to make the problem clear: ================== void problem(void) { unsigned char ii; unsigned char jj; unsigned char flag; for (ii=0;ii<0xff;ii++) { for...
  • Problem with 8051 compiler multiplication/compare statement
    Hi, I made a small program to make the problem clear: ================== void problem(void) { unsigned char ii; unsigned char jj; unsigned char flag; for (ii=0;ii<0xff;ii++) { for...
  • problem with case statement
    I am executing the following code part (KEIL development environment, Microcontroller ADuC7020). if I do insert the "case: 1" structure in func1(), the debugger does not start. If I delete the "case...