Hello Dean Saridakis,
Which processor and which version CodeWarrior do you use?
As normal, CodeWarrior display register values in the correct byte order, as described in the processor Reference User Manual. You could display register values in the reverse order in the debug shell as the following example, please open debug shell from Window->Show View->Debug Shell.
CodeWarrior Debugger Shell v1.0
%>display gpr0
+ General Purpose Registers
GPR0=0x000000007FF46FE0
%>display gpr0 -s
+ General Purpose Registers
GPR0=0xE06FF47F00000000
%>change gpr0 01
%>display gpr0
+ General Purpose Registers
GPR0=0x0000000000000001
%>display gpr0 -s 01
+ General Purpose Registers
GPR0=0x0100000000000000
%>display gpr0
+ General Purpose Registers
GPR0=0x0000000000000001
%>change gpr0 -s 01
%>display gpr0
+ General Purpose Registers
GPR0=0x0100000000000000
%>mem fe211000
fe211000 0x05FAA1E4 ....
%>mem fe211000 -s
fe211000 0xE4A1FA05 ....
%>mem fe211000 =10
%>mem fe211000 -s =0x20000000
If the above doesn't help, would you please explain your purpose in more details? Why do you want to change xml file in CodeWarrior to display register values in the little-endian?
Have a great day,
TIC
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------