0

I'm pretty new to assembly, and I'm wondering when directives and instructions are executed respectively?

hippietrail
  • 15,848
  • 18
  • 99
  • 158
123
  • 8,733
  • 14
  • 57
  • 99

1 Answers1

1

Instructions are executed at run-time.

Directives are instructions for the assembler and thus are not really executed at all.

  • 1
    Although correct, directives are instructions for the assembler that **may** emit instructions that get assembled/linked and then executed at runtime. I have a suspicion you probably meant something like that when you said **not really**. – Michael Petch Mar 30 '16 at 18:38