0% found this document useful (0 votes)
12 views1 page

Mycodecom List

The document is a generated listing from the EMU8086 assembler version 4.08, detailing the machine code corresponding to the source code. It includes instructions for data manipulation, such as moving values into registers and memory. The code initializes a data segment and concludes with a return instruction.

Uploaded by

mrnaufal360
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

Mycodecom List

The document is a generated listing from the EMU8086 assembler version 4.08, detailing the machine code corresponding to the source code. It includes instructions for data manipulation, such as moving values into registers and memory. The code initializes a data segment and concludes with a return instruction.

Uploaded by

mrnaufal360
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

EMU8086 GENERATED LISTING. MACHINE CODE <- SOURCE.

mycode.com_ -- emu8086 assembler version: 4.08

[ 2/19/2025 -- 11:47:56 AM ]

================================================================================
===================
[LINE] LOC: MACHINE CODE SOURCE
================================================================================
===================

[ 1] :
[ 2] : ; You may customize this
and other start-up templates;
[ 3] : ; The location of this
template is c:\emu8086\inc\0_com_template.txt
[ 4] :
[ 5] : ORG 100H
[ 6] :
[ 7] : ; add your code here
[ 8] :
[ 9] 0100: 01 00 00 00 DATA1 DD 1H ; Place 1H
into DATA1
[ 10] 0104: B8 D2 04 MOV AX, 1234 ; Copies
1234 decimal into AX
[ 11] 0107: B0 03 MOV AL, 0011B ; Copies 11
binary into AL
[ 12] 0109: B4 12 MOV AH, 12H ; Copies 12
hexadecimal into AH
[ 13] 010B: A3 00 01 MOV DATA1, AX ; Copies AX
into data segment memory location DATA1
[ 14] :
[ 15] 010E: C3 RET
[ 16] :
[ 17] :
[ 18] :
[ 19] :
[ 20] :
[ 21] :

================================================================================
===================

================================================================================
===================

You might also like