• local variables
    suppose if i declare a local variable, where it will be stored? RAM/ROM?
  • Global Variable.
    In my project I have two files. as follows File A int x; main() { x=2; } File B extern int x; { x=4; } When I compile both files independatly, there is no error. When I link both modules...
  • Global variable
    In my project I am using four source code files. There is one variable, which is used in all four files. When I declared this variable in one file and compiled the file, the compilation was successful...
  • Local and global monitor for exclusive access
    Note: This was originally posted on 19th August 2011 at http://forums.arm.com Hi, My questions are about monitor for exclusive access. 1. If I want to use exclusive access in a dual Cortex cpu system...
  • local variables in assembler
    Hi all, In my function, I use local variables, and everything works fine while I stay in C. But when I try to use the same variables in an assembler insertion in the same function, I get error A45:...