• C51: Absolute address for constants in CODE-space
    Does anyone knows a methode, to declare a const struct in code-space at a specific CODE address in C51? Background: I use a philips 87LPC767-MC and i want to store some code-revision-info in the...
  • Absolute address
    __at works in realview, just include the absacc.h .
  • define absolute code segment in C
    I writing a code for 8051 with C. I need that one of my function will be at a specific loacation in the code memory. I found that there is a way to define an absolute code segment in assembler but I wanted...
  • Regarding absolute address
    Question: i want to place my fn()1 in xdata 0x0100 is it possible by absolute address?
  • Absolute addressing question
    Is there a difference between the following two statements: 1. char far SL811 _at_ 0x07F7FF; SL811 = 0x0D; 2. #define SL811 *((char far *)0x07F7FF) SL811 = 0x0D; I've been having trouble...