If you use packed BCD, then the lower nibble can be used to display the ones digit and upper nibble for the 10's digit.
To perform BCD increment, you add 1 to the accumulator and then execute DA (decimal adjust) instruction.
MOV A,R1
ADD A,#1
DA A
MOV R1,A