Program decription Add two numbers stored at memory location L1 and L2 and display the result Assembly Program START LOAD L1 ADD L2 PRINT HLT Complete Relative Address : Assuming L1 is 10 and L2 is 11 =============================================== 00 START 01 LOAD 10 04 ADD 11 07 PRINT 08 HLT 09 0A 0B 0C 0D 0E 0F 10 Data1 11 Data2 =============================================== Hex Code for the program with Address with Data1 = 2, Data2 =3 =============================================== 00 1 01 8 10 04 3 11 07 D 08 2 09 0 0A 0 0B 0 0C 0 0D 0 0E 0 0F 0 10 2 11 3 =============================================== Hex Code for the program without address and program start at 0 =============================================== 1 9 10 3 11 D 2 0 0 0 0 0 0 0 2 3 =================================================