私はThe Art of Assembly Languageという本を読んでいます。この2行に出会いました。
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.
mov ax, [1000] が oc6h, ooh, 10h に変換され、mov ax, [2000] が 0C6h, 00h, 20h に変換される方法を教えてください。だれか計算を見せてくれませんか? 前もって感謝します。
編集:私はアセンブリプログラミングの初心者です。説明を付けて親切に説明してください。