Created
July 10, 2021 06:46
-
-
Save alvanrahimli/1e02587337247b8b5fc4fbb1a5e3dd6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mov ax, 1234 ; store decimal number 1234 in ax register | |
| mov bx, 0x235 ; store hex number 0x235 in bx register | |
| mov cx, 't' ; store ASCII code of char 't' in cx register | |
| mov dx, ax ; copy value in ax register to dx register |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment