Arithmetic Group Instruction Set of 8085 Microprocessor | ADD, ADC, ACI, ADI, DAD, SUB, SBB, SUI, DCR, INR, INX, DCX instruction
Arithmetic Group of 8085 Microprocessor ADD r The data in Accumulator and entered register will get added and the result will copy to Accumulator Example - ADD B (A) + (B) ⇢ (A) ADD M The data in Accumulator and data in the memory location pointed by HL pair will get added and the result will copy to Accumulator. Example - ADD M (A) + ((H-L)) ⇢ (A) ADC M The data in Accumulator, data in the memory location pointed by HL pair and value of Carry Bit will get added and the result will copy to Accumulator. Example - ADC M (A) + ((H-L)) + (CS) ⇢ (A) ADC r The data in Accumulator, data in entered register and value of Carry Bit will get added and the result will copy to Accumulator. Example -