• 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...
  • Accessing local variables in asm
    How can you access local variables in the arm asm block? One example the software came with looks like this and doesn't work: int AddUp ( int n, int near *pTab) { __asm { ; open inline-assembly...
  • Manual variables initialization in asm
    Hello everyone. I have two questions about linker. Actually I'm not sure, it's about linker, but I guess it's about it. Target - Cortex M4F IDE - Keil uVision 5.15 Language - assembler Toolchain...
  • Passing variables from C to ASM
    How do we pass variables from 'C' program to an assembly part included in the same program? Kindly help.
  • Using a C-variable from ASM
    Hey guys I see there are numerous threads and support docs with mixing C + ASM. but I am still pulling hair out. I can get C to use a register I declared in asm eg: CODLO DATA 39D by using...