End-endp-assemblers directive-microprocessor, Assembly Language

Assignment Help:

END : END of Program:-

The END directive marks the ending of the assembly language program. When the assembler comes across this END directive, it avoided the source lines available later on. Hence, it should be confirm that the END statement should be the final statement in the file and should not seem in between. Also, after the END statement no useful program statement should lie in the file,.

ENDP : END of Procedure:-

In the assembly language programming, the subroutines are called by the name procedures. Thus, procedures may be independent program modules which return specific results or values to the calling programs. The ENDP directive, which is used for denote the end of a procedure. A procedure is generally assigned a name, for instance Label. To mark the end of a program code. The recurring value is assigned having a label, and that label which is used in place of that numerical value, all through the program. at the same time as assembling, whenever the assembler  comes  across  the  label, it substitutes the numerical value for that label and  finds  out  the equivalent code. By Using the EQU directive, even an instruction mnemonic may be assigned with a label, and the label may then be used in the program in place of that mnemonic. Assume, a numerical constant appears in a program ten times. If that constant is to be changed in later time, one will have to make all these 10 corrections. This can lead to human errors, because it is a chance that a human programmer can miss one of those corrections. This will result in the generation of wrong codes. If the EQU directive is used to assign the value with a label that may be used in place of each recurrence of that constant, just 1 change in the EQU statement will give the proper and modified code. The examples which are given below show the syntax.

Example :        

LABEL        EQU   050   0H

ADDITION  EQU   ADD    

The first statement assigns the constant 500H having the label LABEL, whereas the second statement assigns another labelADDITION having mnemonic ADD.  EXTRN:  External  and PUBLIC: Public The directive EXTRN informs the assembler that the names,labels andprocedures  declared after this directive already have been defined in some other assembly language modules.  In the other module where the names labels and procedures really appear, they ought to be declared public, by using the PUBLIC directive. If anyone wants to call a procedure FACTORIAL that appearing in MODULEI from MODULE 2; in MODULE 1, it ought to be declared PUBLIC by using the statement PUBLIC FACTORIAL and in module 2, it ought to be declared external by using the declaration EXTRN FACTORIAL.The statement ofdeclaration EXTRN oughtto be accompanied by the SEGMENT and ENDS directives of the MODULE 1, before it is called in the MODULE 2. Thus the MODULEI and MODULE 2 must have the following declarations.

2099_ENDP.jpg


Related Discussions:- End-endp-assemblers directive-microprocessor

Nonrecursive Factorial, Write a nonrecursive version of the Factorial proce...

Write a nonrecursive version of the Factorial procedure (Section 8.3.2) that uses a loop. (A VideoNote for this exercise is posted on the Web site.) Write a short program that inte

Nible, calculate the number of one bits in bx and complement an equal numbe...

calculate the number of one bits in bx and complement an equal number of least significant bits in ax hint use the xor instruction

Counting Array Values(Programming exercises), Write an application that doe...

Write an application that does the following:(1) fill an array with 50 random integers; (2) loop through the array, displaying each value, and count the number of negative values;

#title:Shifitng of memory, Ask 2. Exchange higher byte of AX and higher byt...

Ask 2. Exchange higher byte of AX and higher byte of BX registers by using memory location 0160 in between the transfer. Then stores AX and BX registers onto memory location 0174 o

Program for generate mips assembly code that runable on spim, Project Overv...

Project Overview In this series of projects you will write a compiler for a small subset of Pascal.  In this assignment, you will start writing the syntax analysis and code gen

Read file in 8086, Write a procedure to read a text file and copy its cont...

Write a procedure to read a text file and copy its contents to another text file using 8086 assembly language .

8086, Ask(2) Write a program to mask bits D3D2D1D0 and to set bits D5D4 and...

Ask(2) Write a program to mask bits D3D2D1D0 and to set bits D5D4 and to invert bits D7D6 of the AX register question #Minimum 100 words accepted#

Plus and underline , What is the hex for + and - under with a sum involved

What is the hex for + and - under with a sum involved

Declare a constant in assembly language, Declare 1 constant. This can be do...

Declare 1 constant. This can be done just below the prototype section. Put the following divider above the constant section. ;************************ Constants ****************

Segment registers-microprocessor, Segment Registers The 8086 addresses ...

Segment Registers The 8086 addresses a segmented memory unlike 8085. The complete 1 megabyte memory, which 8086 is capable to address is divided into 16 logical segments.Thusea

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd