assembly - masm 程序生成的 .lst 文件的内容是什么?

标签 assembly masm

使用 masm .lst 运行汇编语言程序时,会生成文件。
这个 .lst 文件的确切内容是什么,为什么这种转换必不可少?

最佳答案

作为另一种恐龙,我认为我们应该将 Hans Passant 的评论提升为答案。

Back in the olden days, assembly programmers didn't have very good debuggers or an operating system that permitted debugging and code viewing at the same time. So a listing file that was formatted for a printer was a good way to have something to look at while troubleshooting code. Paper consumption was stupendous btw. – Hans Passant May 8 at 17:28



用纸和铅笔编程是一门失传的艺术。很多人都没有错过。

关于assembly - masm 程序生成的 .lst 文件的内容是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10503081/

相关文章:

c++ - 在 C++ 中声明方法 extern

assembly - MIPS32 和 MIPS64 指令

visual-studio - 如何在 MASM/VS15 中使用 AVX2?

assembly - x86组件可在哪些CPU上运行?

assembly - x86 Intel 汇编程序仅在 NASM 中编译

variables - MASM - 宏变量?

c++ - 使用 Code Cave 注入(inject) 64 位 DLL

file - MASM 程序集列表文件 - 解释

assembly - 将 FASM 中的 80 位 float 与给定精度进行比较

algorithm - 速度排序的最佳算法是什么