Hello,
I dont know if this is a very specific question, but still posting in hope that there might be few who have this prior experience/background and can point something to me in my problem.
I am havign a C code for ARM926 target. I am trying to debug it using Arm Xtended Debugger(AXD). The main( ) of this code, takes say 14 command ...
I saw the following question:
http://stackoverflow.com/questions/98944/how-to-generate-a-newline-in-a-cpp-macro
Let me give a brief requirement of a need in newline in a C++ preprocessor. Am working on ARM Realview compiler 3.1 on a code which uses embedded assembly code with C++ code.
#define DEFINE_FUNCTION(rtype, op, val) \
__as...
Problem:
I am using a big C/C++ code base which works on gcc & visual studio compilers where enum base type is by default 32-bit(integer type).
This code also has lots of inline + embedded assembly which treats enum as integer type and enum data is used as 32-bit flags in many cases.
When compiled this code with realview ARM RVCT 2.2 ...
I always debug our arm project by AXD for a AT91 RM9200 board, but now I want to try realview debugger, it seems it is more powerful. there is a configuration script for AXD in order to remap memory, however I can't find how to use it in realview debugger, so it complain 0x20000000 can not be written when loading image. could anybody who...