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.
在终端中,我尝试将汇编代码转换为目标代码
arm-none-eabi-as -o sample.s sample.o
汇编消息:
错误:无法打开 main.o 进行读取:没有这样的文件或目录
并删除我正在操作的那个目录中的 sample.s。
-o 定义你需要做的输出文件名
arm-none-eabi-as -o sample.o sample.s