Experiment-3: 8085 ALP to Subtract of two 8 bit numbers with and without borrow 8085 MPI Lab by Ravinder Nath Rajotiya - March 13, 2021June 3, 20210 Experiment-3: Write a program to perform: i. Subtraction of two 8 bit numbers without borrows. ii. Subtraction of two 8 bit numbers with borrows. Objective: To understand the assembly program To draw flowchart for subtraction of two numbers To develop the assembly program for subtraction To analyse the program and interpret errors and result Requirement: Operating System – Windows, Linux 8085 Simulator Example-1. Subtraction of two 8 bit numbers without borrows. Algorithmic Steps: Input two numbers say one in Accumulator and another in register B Subtract B from A ; A= A-B Check carry ( if A <B, carry flag will be set and difference will be in 2’s complement, Carry=’1’ means difference is -ve. Do correction (take 2’s complement to find magnitude of -ve number) Save the result