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 :)
|
Does these's two codes mean the same? Assambler ->
C ->
If not, how should the assambler code be translated? Kind regards :)
| |||||||
feedback
|
|
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
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:
Um... right? | |||
|
feedback
|
|
Could anyone else verify this, I think the code below is correct!
| |||
|
feedback
|