1.

What Is The Text Section?

Answer»

The text SECTION is USED for keeping the ACTUAL code. This section must begin with the declaration global _start, which tells the KERNEL where the program execution begins.

The SYNTAX for declaring text section is:

section.text
global _start
_start:

The text section is used for keeping the actual code. This section must begin with the declaration global _start, which tells the kernel where the program execution begins.

The syntax for declaring text section is:

section.text
global _start
_start:



Discussion

No Comment Found