Hi,
I'm trying to debug a program for a MPC5744P using iSystem's Bluebox and winIDEA. However it seems to crash when it is executing the initialization dissassembly code. Specifically, it seems to crash when it enables the MSR.ME bit:
;#*************************** Enable ME Bit in MSR *****************************
mfmsr r6
e_or2i r6, 0x1000
mtmsr r6
This bit seems to be used to enable Asynchronous Machine Check interrupts. The moment I run this section the program simply jumps to addess 0x0000 0010. I don't know why this happens.
I can skip the execution of this whole section, but I believe this might be causing some other problems with the code I'm trying to debug.
Anyone has had a similar problem before?