8 bit addition program of the 8051. 1)8-bit addition program simply use the 8 bit memory location to store element that need to be add. We can use both the internal as well as the external memory location for the addition. In the following program we use the external memory location to fetch the data and add them. program: ORG 0000H; starting memory location MOV B,#00H; load the 00h in the resistor b MOV DPTR,#2000H ; load the memory pointer in the DPTR MOVX A,@DPTR ; move content of memory location 2000h in the acc MOV R2,A; store the content of the accumulator...