什么是 IA-32 关键字?标签名称有什么限制?我目前正在用 AT&T 语法编写汇编代码 - 奖励:我什至不确定 Intel 和 AT&T 语法之间的区别是什么。
编辑:我最想知道哪些限制没有标签,例如,是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