i have a problem converting assembly code for microchip pic into C language it is two parts first part is
movlw HIGH RevTable ; get MS byte of table
and the table is
RevTable
retlw B’00000000’ ; invalid
retlw B’00100001’ ; phase /6
retlw B’00000110’ ; phase /4
retlw B’00100100’ ; phase /5
retlw B’00011000’ ; phase /2
retlw B’00001001’ ; phase /1
retlw B’00010010’ ; phase /3
retlw B’00000000’ ; invalid
so what does that mean? i can not understand it
the second question is
incfsz ADC,w ; if ADC is 0xFF we’re at full speed - skip timer add
how it could be in the C thanks a lot