COA - Lab Assignment 1: Name: Shubham Waghule Roll No-94 GR No: 12120127 Div: CS - D Batch: B3
COA - Lab Assignment 1: Name: Shubham Waghule Roll No-94 GR No: 12120127 Div: CS - D Batch: B3
Instructions –
MOV: This instruction is used to move data from one location to another. Syntax – mov
destination, source
LEA (Load Effective Address): It loads the specified register with the offset of a memory location.
Commands –
1. 09h: Displays the string until “$” is reached.
2. Int 21h: Interrupt used to exit the program.
3. .data: This Command is used only when we want to store in Data Segment, basically, it is the
memory access of the Data Segment. Whatever we want to print must be written here.Also, the
variables are declared here.
4. 10, 13: They work as Escape Sequence Character
5. $: It states the end of a Statement
6. Db (Define Byte): It acts as an Assembler Directive
7. . code: Full Logical Program is written here
8. Tasm – Used for Compilation
9. tlink– Perform linking operation
Output –