我正在阅读《汇编语言的艺术》一书。我遇到了这两行。
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。谁能告诉我计算结果?提前致谢。
编辑:我是汇编编程的初学者,请用描述解释。