私はMASM32を使用して、正確なディレクティブを覚えていないことができますが、
:あなたはそれがよりC#のコードのように構成することにしたい場合は
mov edi, addr tiles ; might be called offset, some assemblers (notably gas) would use something like lea edi, [tiles] instead
mov ecx, 12 ; the count, this could be gotten from an equ, read from a variable etc.
for_loop:
add byte ptr [edi], 2 ; tiles[i] += 2
inc edi ; move to next tile
dec ecx ; count--
jnz for_loop ; if (count != 0) goto for_loop
または:基本的な構造はこのようなものでなければなりません0
mov edi, addr tiles
sub ecx, ecx ; ecx = 0
for_loop:
cmp ecx, 12 ; ecx < tiles.Length ?
jnl done ; jump not less
add byte ptr [edi+ecx], 2 ; tiles[i] += 2
inc ecx ; i++
jmp for_loop
done:
tiles
のタイプを変更すると、コードの一部(特にedi
を含むもの)を変更する必要があることに注意してください。