Cとアセンブリ言語の対応関係の一つ

279 ワード

C:
uint8 a;
if (5 == a)
    funtion();

アセンブリ言語と同等:
mov ax, a
cmp ax, 5
jz function

または
mov ax, a
cmp ax, 5
je function