EC6513 MPMC LAB Manual, MICROPROCESSOR MICROCONTROLLER Lab Manual – ECE 5th SEM Anna University

0

EC6513 MPMC Lab Manual

Anna University Regulation 2013 Electronics and Communication Engineering (ECE) EC6513 MPMC LAB Manual for all experiments is provided below. Download link for ECE 5th SEM EC6513 MICROPROCESSOR MICROCONTROLLER Lab Manual is listed down for students to make perfect utilization and score maximum marks with our study materials.

Anna University Regulation 2013 Electronics and Communication Engineering (ECE) 5th SEM EC6513 MPMC LAB-MICROPROCESSOR MICROCONTROLLER Lab Manual

AIM:
To convert a given Move a data block without overlap .
ALGORITHM:
1. Initialize the memory location to the data pointer.
2. Increment B register.
3. Increment accumulator by 1 and adjust it to decimal every time.
4. Compare the given decimal number with accumulator value.
5. When both matches, the equivalent hexadecimal value is in B-register.
6. Store the resultant in memory location.
PROGRAM:
DATA SEGMENT
X DB 01H,02H,03H,04H,05H ;Initialize Data Segments Memory Locations
Y DB 05 DUP(0)
DATA ENDS
CODE SEGMENT

ASSUME CS:CODE,DS:DATA
START:MOV AX,DATA ; Initialize DS to point to start of the memory
MOV DS,AX ; set aside for storing of data
MOV CX,05H ; Load counter
LEA SI,X+04 ; SI pointer pointed to top of the memory block
LEA DI,X+04+03 ; 03 is displacement of over lapping, DI pointed to ;the top of the destination block
CODE ENDS
END START
RESULT:
Thus the output for the Move a data block without overlap was executed successfully

EC6513 MPMC Lab Manual with all experiments – Download Here

If you require any other notes/study materials, you can comment in the below section.

Related Links

For EC6513 MPMC Lab Syllabus – Click here

Search Terms

Anna University 5th SEM ECE MPMC LAB Manual

EC6513 MICROPROCESSOR MICROCONTROLLER Lab Manual free download

Anna University ECE MPMC LAB Manual Regulation 2013

EC6513 Manual, MPMC LAB experiment wise Manual – ECE 5th Semester

Share.

Comments are closed.