Javatpoint Logo
Javatpoint Logo

Difference between Macro and Procedure

A microprocessor is a computer system processor that accomplishes the functions of a CPU on a single integrated circuit. It manages the output devices, processes instructions stored in its memory, and shows the results. These processors are made up of both combinational and sequential digital circuitry. Furthermore, Assembly language is a programming language that aids in the programming of microprocessors. Both Macro and Procedure are two ideas that are utilized in microprocessor programming. The primary distinction between these processes is that the Macro is utilized for a small number of commands. In contrast, the Procedure is utilized for a large number of instructions.

In this article, you will learn about the difference between Macro and Procedure. But before discussing the differences, you must know about Macro and Procedure.

What is Macro?

Macro is a sequence of instructions that may be utilized anywhere in the software by utilizing its name. It is primarily used for modular programming. As a result, the same set of instructions may be utilized several times with the help of a macro. The macro's identifier is substituted with the actual defined instructions during compilation. Therefore no calling and returning occur.

Syntax:

Explanation:

The macro_name is used to identify the macro, while the number_of_params is utilized to represent the number of parameters. In addition, the macro can be invoked using the macro name and the appropriate parameters. As a result, if the same set of directives must be executed numerous times, the programmer may write those directives in a macro and utilize it in his program.

What is the Procedure?

Procedures are similar to macros, but these are utilized for large sets of instructions, whereas macros are beneficial for tiny sets of instructions. It includes sets of instructions that accomplish a specified goal. It has three major components: the procedure name, which identifies the process. The procedure body contains a sequence of instructions, and the RET statement, which signifies the return statement. Procedures use the call-return approach to achieve complete modularity.

Syntax:

To call a procedure function, you can use this:

Finally, the control transfers to the calling procedure via the RET instruction after the procedure has been completed.

Key Differences between Macro and Procedure

Difference between Macro and Procedure

Here, you will learn about the key differences between Macro and Procedure. Some of the main differences between the Macro and Procedure are as follows:

  1. A macro definition defines a macro as a series of instructions that facilitate modular programming. On the other hand, a procedure is a sequence of instructions that a programmer can repeatedly invoke and that carry out a particular task.
  2. When a macro is called, a new machine code is created. In contrast, only one instance of the machine code is generated during the procedure.
  3. A macro also removes the overhead time involved in calling the procedure and starting the program again. In contrast, calling a process and returning to the calling procedure from the calling procedure require greater overhead time.
  4. The parameters in the macro are given as part of a sentence that calls the macro. In contrast, parameters are supplied in registers and memory locations on the stack in a procedure.
  5. CALL and RET instructions are not required for the macro. On the other hand, a procedure necessitates CALL and RETS commands.
  6. A macro is utilized for a small number of instructions, usually less than ten. In contrast, a procedure is utilized for a large number of instructions, usually more than ten.
  7. A macro necessitates extra memory. On the other hand, a procedure necessitates less memory.
  8. The execution speed of a macro is faster. In contrast, the execution speed of a procedure is slower than a macro.

Head-to-head comparison between Macro and Procedure

Here, you will learn the head-to-head comparisons between Macro and Procedure. The main differences between Macro and Procedure are as follows:

Features Macro Procedure
Definition It is a series of rules or programmable patterns that decrypts a specified input sequence into a predefined output sequence. It is a sequence of instructions that a programmer can repeatedly call to execute a specified purpose.
Memory Requirement It needs large memory. It needs less memory.
Machine Code When a macro is called, a new machine code is created. Only one instance of the machine code is generated during the procedure.
Sets of Instructions It is utilized for a small number of instructions, usually less than ten. It is utilized for a large number of instructions, usually more than ten.
CALL and RET It doesn't need CALL and RET instructions. It needs CALL and RET instructions.
Overhead Time It removes the overhead time involved in calling the procedure and starting the program again. Calling a process and returning to the calling procedure from the calling procedure require greater overhead time.
Execution Speed The execution speed of a macro is faster. The execution speed of a procedure is slower than a macro.
Passing Parameters A parameter is passed as part of the statement that calls the macro in a macro. The parameters are transmitted through registers and stack memory addresses.
Assembler Directives Assembly directive MACRO is utilized to define macros, while the assembler directive ENDM is utilized to signify that the body has finished. Assembler directive PROC is utilized to specify the procedure, and ENDP is utilized to signify that the body has finished.

Conclusion

In summary, assembly language is a popular programming language that is utilized for microprocessor programming, and Macro and Procedure are two Assembly concepts. A macro is utilized for a limited number of instructions, usually less than ten. In contrast, a procedure is utilized for a large number of instructions, usually more than ten.


Next TopicDifference between





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA