• Else statement not working
    I am using keil evaluation version. When i use debug for following program in keil, it skips the else part altogether. It goes to line 1,2 and then 7. Whats wrong with it. 1 a = 1; 2 if(a == 2)...
  • Debug Skipping Function with IF ELSE
    Summary: Device TI MSC1210 A user function called in main passes a pointer to an array and either a 1 or a 0. The function uses the 1/0 to decide which serial port to use. It then outputs data from...
  • Simple IF THEN ELSE and SELECT CASE for assember
    Simple IF THEN ELSE and SELECT CASE macros to be used in assember for micros. The Select case macros I found on internet. I want to put together because are a complement to the IF. Can be used...
  • IF statement
    hi i want to use IF statement in assembly, like this if (p3.0 true) { } else { } or like this BEGIN: IF R0 = #45 { } ELSE { } ENDIF jmp begin so how can i use it, for...
  • If statements
    Hi, Currently doing a project for college and have come to a road block. I have function which has a if statement. There are five different possible outcomes for the if statement. The outcome depends...