• define a constant to an absolute address
    How to define the following constant to an absolute address at 0x1000? unsigned char code index[] = { 0x3, 0x5, 0x6 } ; //a constant mem in a file Thanks for any help!
  • Defining C Preprocessor Constants in A51
    Does anyone know a way to define C preprocessor comments at the command line for A51? For example, in C I would do something like: C51 foo.c DEFINE(SOME_CONST) but the "DEFINE" directive does not...
  • Global variables are not initializing to defined value
    Hello, i am using scatter file to make load region for RW and ZI. ROM 0x0 { ER_RO 0x0 { CStartUp.o (RESET, +First) * (+RO) ;*(PUBLIC_VARS) } NVIC_DEFINE 0x480000 { irq.o (+ZI) ;...
  • Is it possible to define an intrinsic function in C51?
    Hi, i am interested in knowing if the C51 compiler is able to define initrisic functions... I mean if there is a way I can define a function that is expanded inline in the assembly language and there...
  • C++ global object multiple defined
    Hello: I'm coding in C++ for ARM for the first time, using Keil. I'm working in a project that already exists but I need to make some changes. I cannot change the libraries or the file's structure....