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.
我试图在 MIPS 中模拟最基本的 javascript 调试形式。与此等效的是什么($t0在此示例中等于 javascript 变量):
$t0
console.log($t0);
换句话说,我如何在 MIPS 中将某个变量的内容打印到控制台?
syscall是要走的路。此外,如果您需要一个良好的界面来使用 MIPS,那么我建议您使用此工具。它带有一些易于使用且功能强大的调试工具,听起来可能会有所帮助:
syscall
http://pages.cs.wisc.edu/~larus/spim.html