Why is the nomenclature of the memory section prefixed with "."

Application memory sections are usually called as follows:

.text, .data, .bss, ...

My question is, what is the story behind "." prefix (why .text, not text)?

+6
source share
1 answer

My best guess is that no. words will be considered labels (for example, points to jump to), not assembler directives.

+1
source

Source: https://habr.com/ru/post/912599/


All Articles