I have found out that I can create global variables in the text section, for example:
section .text
i DD 12345
Will this variable be read-only (since the text section is typically read-only)? And is there's anything wrong in creating global variables in the text section (other than the fact that they'll probably be read-only)?