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 one byte or compare two bits
help me plz
You have to choose:
Either write in a High-Level Languge (HLL) such as 'C' - which gives you "structured" facilities like if-then-else;
Or write in a Low-Level Languge (LLL) such as Assembly - which doesn't!
Your call!