We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi
in assembler file I have
// RO_BASE = 0x78000000
funcName
DCD FooEntry - . + .
what does it mean "minus dot plus dot"?
Hi RonanThanks for answerI found this in Qalcomm ThreadX moduleThis create header of the BIN from ELF for relocations
and the question "...why one would do this..."I compile:
foo // = 0x78000000 is ro_base (-ro)DCB 0,0,0,0,0,0,0 // 7 zeroesDCB foo // = 0x78000007DCB foo - . + . // = 0x00000008 DCB foo // = 0x78000009
"- . + ." it seems as current address minus ro_base