<b>
;
;to decrement R6::R7 do this
;
DEC_R6R7:
    MOV   A, R7
    DEC   R7
    JNZ   LOC_B
    DEC   R6
LOC_B:
    ...
</b>