• ARM: asm variable initialization
    Hi Im using a STM32F429ZI and have the folowing problem: In my assembler program i initialize the following variables: AREA myVars, DATA, READWRITE op1_table DCW 0x0001, 0x0017, 0xffff...
  • ARM: asm variable initialization
    Hi Im using a STM32F429ZI and have the folowing problem: In my assembler program i initialize the following variables: AREA myVars, DATA, READWRITE op1_table DCW 0x0001, 0x0017, 0xffff...
  • Variable initializing problems
    Hi, help me to understand, what is wrong here: When I wrote: void main() { unsigned char t; t = 0x20; t |= 0x30; t = 0x21; // <- in debuger t=0xF5 !!! initProc(); IOSET = 0x0C; } then...
  • Global Variable Initialization
    Hello, I have variables initialized at the global level in my .c file but they are never being initialized. When I watch in d-scope and INIT.a51 is executing: ?C_START: MOV DPTR,#?C_INITSEG LOOP...
  • global variable initialization
    Hello I got a application for a Cortex-m0 device. the application has no entry point, so no main(). This is the way it was designed. In a way the application does what is supposed to do...