マトリックスをめくってすべての数値を合計する NASM プログラムを作成しようとしています。
インクリメント操作を機能させようとして、過去 2 時間行き詰まりました。
私は試した
mov DX, 0
inc DX
と
mov DX, DX+1
と
mov CX, counter ; a variable initialized to 0
inc CX
などがありますが、何も機能していません。
私を助けてください !
アップデート
具体的には、次のエラーが発生します。
/usr/bin/ld: warning: i386 architecture of input file `a3.o' is incompatible with i386:x86-64 output
a3.o: In function `main':
a3.asm:(.text+0x18): relocation truncated to fit: R_386_16 against `.bss'
collect2: ld returned 1 exit status