Right side of the record Aim: To learn assembly instructions and different addressing modes of Intel 8086 Microprocessor Software required: Emulator 8086 Program Code: (table format (label, CS:IP, opcode, operand, comment) Eg: Label CS:IP Opcode Operand Comment 0700:0100 MOV AX, 1000H ; The Data 1000h is moved into AX register 0700:0103 MOV DS, AX ; Base address 1000h is copied into DS 0700: 0105 MOV BX, [0100h] ;The content in 1000:0100h is copied into BX left side of the record Execution result: Before execution and after execution AX DS 1000:0100 BX Before Execution H L XX XX 07 00 76 43 XX XX After Execution H L 10 00 10 00 76 43 right side of the record Result : Thus the different addressing modes and assembly instruction of Intel 8086 Microprocessor are studied and verified.