Assembly File Structure

Assembly source file is broken into the following sections:

  • .model - indicates the size of the .data and .text sections

  • .stack - marks the beginning of the stack section and indicates the size of the stack in bytes

  • .data - marks the beginning of the .data section and defines the variables, both initialized and uninitialized

  • .text - holds the program's commands

Last updated