I am reading the book The Art of Assembly Language. I came across these two lines.
the three byte encoding for mov ax, [1000] would be 0C6h, 00h,
10h and the three byte encoding for mov ax, [2000] would be 0C6h, 00h, 20h.
Can anybody show me how mov ax, [1000] converted to oc6h, ooh, 10h and mov ax, [2000] converted to 0C6h, 00h, 20h. Can anybody show me the calculations? Thanks in advance.
EDIT: I am a starter in assembly programming, kindly explain with description.