标签: arrays assembly masm x86-16
让我说我想要在一个名为index的变量上存储索引。
我试图使用像这样的代码访问数组的特定数据
mov si, OFFSET array mov al,[si+index] mov ah,09h mov bl,0eh mov cx,1 int 10h
代码不允许我访问数组的特定数据