• Relocatable code with const data
    I need to have a relocatable code with const data referenced by the code. Can anybody help on how the code / linker commands be organised
  • Absolute address
    __at works in realview, just include the absacc.h .
  • 7-seg-plugin in uVision in Assembly example
    I googled this 7-seg plugin for uVision ( drava.etfos.hr/.../7-seg-LEDs_en.htm ) & it felt perfect for simulating my asm code without leaving uVision. But for the love of my life I cannot get the...
  • How to access data from Absolute Address
    Hi , I have used BDATA for my 12 bit ADC program where all the 12 bits are collected at 0x20 by declearing volatile unsigned int bdata ADC _at_ 0x20 The information of the data accessed...
  • 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!