ME6712 MECHATRONICS Lab Manual Download- MECH 7th SEM Anna University

0

ME6712 MECHATRONICS Lab Manual

Anna University Regulation 2013 Mechanical Engineering (MECH) ME6712 Mechatronic LAB Manual for all experiments is provided below. Download link for MECH 7th SEM ME6712 MECHATRONICS Lab Manual is listed down for students to make perfect utilization and score maximum marks with our study materials.

Anna University Regulation 2013 Mechanical Engineering (MECH) 7th SEM ME6712 Mechatronic LAB-MECHATRONICS Lab Manual

 
ASSEMBLY LANGUAGE PROGRAMMING OF 8085 – 8 BIT SUBTRACTION
Aim:
To perform the 8 – bit subtraction using 8085 Microprocessor
Apparatus required:
8085 Microprocessor
Algorithm:
1. Start the program.
2. Move the first data lower order byte to a register.
3. Add the second data lower order byte with a register.
4. Move the lower order byte result data from a reg. to 50H memory location.
5. Move the first data higher order byte to a register.
6. Add A reg. and second higher order byte with the carry flag.
7. Move the higher order byte result data from a reg. to 51H memory location.
8. Clear 52H memory location.
9. Check the carry flag; if it is 1, do the increment in 52H address location.
10. Stop the program.
Program:
ORG 0000H
CLR C
MOV A, 40h ;LSB Data1
ADD A, 42h ;LSB Data2
MOV 50H,A
MOV A, 41H ;MSB Data1
ADDC A, 43H ;MSB Data2
MOV 51H,A
CLR 52H
JNC HLT
INC 52H
HLT: SJMP HLT
END

Input & output:
Data 1 23
Data 2 11
9200 12
9201 0
Result:
Thus the program for subtracting two 8 – bit numbers was executed.
ME6712 MECHATRONICS 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 ME6712 MECHATRONICS Lab Syllabus – Click here
Search Terms
Anna University 7th SEM MECH MECHATRONICS LAB Manual
ME6712 MECHATRONICS Lab Manual free download
Anna University MECH Mechatronic LAB Manual Regulation 2013
ME6712 Manual, Mechatronic LAB experiment wise Manual – MECH 7th Semester

Share.

Comments are closed.