• How to define constants in the Program Memory Space (CSEG) as opposed to defining in the data space
    IN assembler, I can define as follows: TABLE_CONSTANTS: DB 0x7,0x18,0x18,0x24,0x24,0x7e DB 0x42,0x42, 0x00,0x00 For Keil C program, I can define the above as follows: char xdata table_constants...
  • How to define constants in the Program Memory Space (CSEG) as opposed to defining in the data space
    IN assembler, I can define as follows: TABLE_CONSTANTS: DB 0x7,0x18,0x18,0x24,0x24,0x7e DB 0x42,0x42, 0x00,0x00 For Keil C program, I can define the above as follows: char xdata table_constants...
  • 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...
  • 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...
  • 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!