Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始学习汇编代码,但仍然不确定;汇编代码源使用什么文件扩展名?
你可以(可能)使用你想要的任何东西。一些常见的有.s、.S和.asm。检查您的编译器/汇编器文档,以了解您的系统/工具链是否首选一个。例如,如果您使用.s扩展名,GCC 和 Clang 将假定文件包含汇编代码。如果你使用其他东西,你需要传递一个适当的-x标志来让前端做正确的事情。
.s
.S
.asm
-x