• 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...
  • IF statement in assembly
    I'm wondering, Does assembler support if staments? (like a C program) Tried something very simple: org 0h sjmp BEGIN org 50h BEGIN: IF R0 == #45 MOV A, #54 CPL A ELSE MOV A, #45 CPL A ENDIF...
  • printf statement
    Greetings, I'm "attempting" to use the printf statement within my main code. Currently I'm seeing nothing out. My processor is a Dallas DS80C320. This has two serial port. - sbuf0 and sbuf1....
  • switch statement
    I need to use the switch statement with up to 255 cases? I keep getting the out of range error