Does these's two codes mean the same?

Assambler ->

_asm
    INCF PR4,0,ACCESS
    CPFSLT TMR4,ACCESS
_endasm

C ->

++PR4;
if (PR4 < TMR4)
   PIR3bits.TMR4IF = 1;

If not, how should the assambler code be translated?

Kind regards :)

link|improve this question

2  
What CPU/architecture is this? – Joachim Pileborg Jan 9 at 10:44
it's microchip's PIC18F87J50 Compiler C18 – Christian Jan 9 at 11:01
feedback

2 Answers

The first answer is no, but Im unsure how to translate it!

INCF PR4,0,ACCESS //(INCF f,d) (Increment f) (f + 1 -> d) "Increment PR4 Register "Working register (accumulator)" in ACCESS in other words: Get PR +1 to WREG

WREG = PR +1;

CPFSLT TMR4,ACCESS //(CPFSLT f) (Compare f/w, skip if f< w) (f-W, skip if f < W) Compare TMR4 < WREG

=> skip if TMR4 < WREG => if TMR4 >= WREG

Should Give:

if (TMR4 >= WREG)
    WREG = PR4 + 1;

Um... right?

link|improve this answer
feedback
up vote 0 down vote accepted

Could anyone else verify this, I think the code below is correct!

_asm
    INCF PR4,0,ACCESS  //PR4+1 destination WREG, Access bank
    CPFSLT TMR4,ACCESS //Compare TMR4 with contents of WREG in Access bank, Skip if TMR4 < WREG
_endasm
/* Above says: if (TMR4 <= PR4 + 1)*/
    PIR3bits.TMR4IF = 1; // Then do this line
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.