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.
我开始学习组装。
假设我编写了一个程序来查找整数数组中的最小值。
PUBLIC _findmin .MODEL SMALL .CODE _findmin PROC // code here... _findmin ENDP END
我如何测试它是否真的有效?如何执行此代码?
有几种方法可以确认您的代码是否正常工作。一种是通过调试器。如果您正在针对多个结果进行测试,您还可以编写一个简单的包装器并使用各种输入参数进行循环,将输出与预期结果进行比较。我在编写一种模式匹配算法时这样做了,因为很难跟踪所有可能的模式并确保它们在更改后仍然有效。
还有用于更复杂代码的测试框架。