InterviewSolution
| 1. |
What Is The Syntax Of Assembly Language Statements? |
|
Answer» Assembly language statements are entered one statement per line. Each statement follows the FOLLOWING format − [label] MNEMONIC [operands] [;COMMENT] The fields in the SQUARE brackets are optional. A basic instruction has two PARTS, the first one is the name of the instruction (or the mnemonic), which is to be executed, and the second are the operands or the parameters of the command. Assembly language statements are entered one statement per line. Each statement follows the following format − [label] mnemonic [operands] [;comment] The fields in the square brackets are optional. A basic instruction has two parts, the first one is the name of the instruction (or the mnemonic), which is to be executed, and the second are the operands or the parameters of the command. |
|