1.

What Are The Symbol Defining Statements Generally Used In Assemblers?

Answer»
  • ‘EQU’-it allows the programmer to DEFINE symbols and specify their values directly. The general format is Symbol EQU value 
  • ‘ORG’-it is used to indirectly assign values to symbols. When this statement is ENCOUNTERED the assembler resets its location counter to the SPECIFIED value. The general format is ORG value In the above two statements value is a CONSTANT or an expression involving constants and PREVIOUSLY defined symbols. 



Discussion

No Comment Found