YASM编译具有Intel语法的64位代码(Yasm compiling 64 bit code w

2019-10-17 13:31发布

我有这个文件:

.code64
pop %rbx

这与下面的指令YASM很好的编译:

yasm.exe asm.asm -o asm.bin -m amd64 --parser=gas

我的问题是:有没有办法使用NASM分析器通过使用英特尔的语法来编译64位代码? 我真的不喜欢AT&T语法

Answer 1:

请参阅有关BITS指令YASM手册 。

bits 64
pop rbx
yasm.exe asm.asm -o asm.bin -m amd64


文章来源: Yasm compiling 64 bit code with intel syntax