nasm - What does mov cx, 02001Q mean in assembly -
i'm doing analysis of shellcode found @ http://www.shell-storm.org/shellcode/files/shellcode-211.php
i wondering particular instruction does:
mov cx, 02001q
i know moves value cx, i'm not sure q stands for.
from nasm docs;
nasm allows specify numbers in variety of number bases, in variety of ways: can suffix h or x, d or t, q or o, , b or y hexadecimal, decimal, octal , binary respectively
in other words, 02001q
means 2001 octal.
Comments
Post a Comment