Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Microsoft ASM アセンブリを生成する逆アセンブラーから生成された 2 つの行を次に示します。
mov dl, loc_0040540c[edx] jmp dword ptr [loc_00405450][edx*4]
誰かが彼らが何を意味するのか説明できますか? 私は主に NASM を使用しているため、同等の NASM も同様に適しています。
NASM で言えば:
mov dl, [loc_0040540c + edx] jmp [loc_00405450 + edx*4]
そして、それらloc_0040540cはおそらくそれぞれのアドレス/定数です(例:0040540cH)。
loc_0040540c
0040540cH