• 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...
  • 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
  • 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...
  • ARM9 defined(_WIN32) if statement help
    I am working on SMTP using mbedTLS-2.16.1 to create a secure email protocol. I downloaded the mbedTLS-2.16.1 package from: tls.mbed.org/.../mbedtls-2.16.1-and-2.7.10-released Now I am trying to...