我有这个文件:
.code64
pop %rbx
这与下面的指令YASM很好的编译:
yasm.exe asm.asm -o asm.bin -m amd64 --parser=gas
我的问题是:有没有办法使用NASM分析器通过使用英特尔的语法来编译64位代码? 我真的不喜欢AT&T语法
我有这个文件:
.code64
pop %rbx
这与下面的指令YASM很好的编译:
yasm.exe asm.asm -o asm.bin -m amd64 --parser=gas
我的问题是:有没有办法使用NASM分析器通过使用英特尔的语法来编译64位代码? 我真的不喜欢AT&T语法
请参阅有关BITS指令YASM手册 。
bits 64
pop rbx
yasm.exe asm.asm -o asm.bin -m amd64