IA-32 キーワードとは? ラベル名の制限は何ですか? 私は現在、AT&T Syntax でアセンブリ コードを書いています - おまけ: Intel と AT&T Syntax の違いが何であるかさえわかりません。
編集:ラベルがない制限を知りたいのですが、たとえば、print
ラベル名は許可されていますか?
print:
pushl %eax
pushl $str
call printf # output contents of stack according to out string
popl %eax # Clean up the stack, remove the parameters of print
jmp end