• 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!
  • Linker Error: Improper Fixup: Segment: Absolute
    Hello, upon a build, the link seems to throw the following assertion: BL51 BANKED LINKER/LOCATER V6.02 *** ERROR L121: IMPROPER FIXUP MODULE: .\PoulsboDS2250\OBJ\SerialDriver.obj (SERIALDRIVER)...
  • Can I define an array variable in absolute address of code memory?
    It's somewhat like look-up table of assembly. I defined an array in header file of C program like this: unsigned char code volt_2_freq[5]= { 100, 200, 300, 400, 500 }; Can I put it in a specific address...
  • Absolute location of code in bank
    I am migrating from another toolset. I have a project that uses banked codespace, with a common from 0x00000-0x07FFF, and two banks from 0x08000-0x0FFFF. I have three subroutines that I need to locate...
  • Relocation of segments in user-defined memory class
    I have defined my own memory class, ECODE_APP, in ECODE space. The memory range for this class is specified at link time. I have defined a segment in an assembly module, which I wish to locate at the...