标签: python arrays assembly mips
我在python中有这段代码:
len(the_list)
我想知道如何将其翻译成MIPS程序集。 “the_list”不是列表,而是MIPS中的数组
我读了类似
lw $t1, ($t2) #$t2 is where the_list is stored, $t1, is loading the length of the_list
等效于数组的长度,但它不在MIPS中执行。 关于这个的任何建议或我错了吗?