これはコードです:
section .data
v dw 4, 6, 8, 12
len equ 4
section .text
global main
main:
mov eax, 0 ;this is i
mov ebx, 0 ;this is j
cycle:
cmp eax, 2 ;i < len/2
jge exit
mov ebx, 0
jmp inner_cycle
continue:
inc eax
jmp cycle
inner_cycle:
cmp ebx, 2
jge continue
mov di, [v + eax * 2 * 2 + ebx * 2]
inc ebx
jmp inner_cycle
exit:
push dword 0
mov eax, 0
sub esp, 4
int 0x80
私は配列を使用していて、それをマトリックスとしてスキャンしています。これは上記のコードのC変換です。
int m[4] = {1,2,3,4};
for(i = 0; i < 2; i++){
for(j = 0; j < 2; j++){
printf("%d\n", m[i*2 + j]);
}
}
アセンブリコードをコンパイルしようとすると、次のエラーが発生します。
DoubleForMatrix.asm:20: error: beroset-p-592-invalid effective address
この行を参照します
mov di, [v + eax * 2 * 2 + ebx * 2]
誰かがこの行の何が問題なのか説明してもらえますか?レジスターの寸法のせいだと思います。
mov edi, [v + eax * 2 * 2 + ebx * 2]
しかし、同じエラーが発生します。
これはMacOSXのアセンブリです。別のSOで動作させるには、exitsyscallを変更する必要があります。