I'm pretty new to assembly, and I'm wondering when directives and instructions are executed respectively?
Asked
Active
Viewed 1,423 times
0
-
2Directives = assembly time, instructions = runtime (of course). – Jester Mar 29 '16 at 18:10
1 Answers
1
Instructions are executed at run-time.
Directives are instructions for the assembler and thus are not really executed at all.

500 - Internal Server Error
- 28,327
- 8
- 59
- 66
-
1Although 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