02-sections.md 561 B

Sections:

  1. section .bss - uninitialized information (variables)
  2. section .data - initialized information
  3. section .text - program code

Keywords:

  1. executable instructions - after compiling will be translated info machine code
  2. directives (pseudo-instructions) - sections etc
  3. macros -

Commands syntax:

`[label:] mneumonics [operands] [;comment]`  

Memory segments:

  1. Data segment [sections .data, .bss] - declaring memory that stores program data
  2. Code segment [section .text] - stores instructions
  3. Stack