realview

Debugging using RealView Debug(RVDebug)

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 ...

How to include a newline in a C++ macro or how to use C++ templates to do the same ?

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...

overriding enumeration base type using pragma or code change

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 ...

how to migrate from AXD to realview

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...