MikeBZH
- 11th June 2009, 17:01
Hi,
I am trying to get a disassembly listing of my PBP program.
Using MPLAB I only get a partial result for the more complex Basic statements. I mean that not all the ASM equivalent appear. For example :
82: CCP1CON = $0C
00070 0E0C MOVLW 0xc
83:
84: CCPR1L = DataByte >> 2
00074 C01C MOVFF _DataByte, ADCS1
Obviously MOVLW 0xC is not the complete translation of CCP1CON = $0C.
Some lines involving CCP1CON are missing in the assembly code.
My first question is : Is there somewhere an option or a box to be ticked in order to get the full assembly code ?
My second question is : Is there something equivalent with the MicroCode Studio development environnement. If yes, where ?
Thank you for your help
MikeBZH
I am trying to get a disassembly listing of my PBP program.
Using MPLAB I only get a partial result for the more complex Basic statements. I mean that not all the ASM equivalent appear. For example :
82: CCP1CON = $0C
00070 0E0C MOVLW 0xc
83:
84: CCPR1L = DataByte >> 2
00074 C01C MOVFF _DataByte, ADCS1
Obviously MOVLW 0xC is not the complete translation of CCP1CON = $0C.
Some lines involving CCP1CON are missing in the assembly code.
My first question is : Is there somewhere an option or a box to be ticked in order to get the full assembly code ?
My second question is : Is there something equivalent with the MicroCode Studio development environnement. If yes, where ?
Thank you for your help
MikeBZH