• Variable Locations

    How can I get a location of a variable ? In watch windows , there is only value . Can I get location of a variable directly in Keil uVision ? For example global integer a. 

  • Changing DS-5 Debugger Expressions View Location Address space

    I'm currently using an FVP model to develop my system. I'm using the DS-5 debugger. In the expressions view, I'm always getting the EL3 address space view of my expression of interest although I'm running in EL2. How can I change this? Thanks in adva…

  • how to change my program starting adress?

    Hi, I just wanted to start programming ARM, I got an NXP LPC1768 board! I wrote my first program!

    here is code

    #include "LPC17xx.h"  
    int main(void) { 
        int a;
        LPC_GPIO1->FIODIR=1;
        while(1) {
             LPC_GPIO1->FIOSET=1;
             for(a=0;a<7200000;a…