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.
我无法将我以前的一些代码移动到汇编中的全局函数中。我有一个算法可以接受len,列表的长度在lst哪里,并且是双字列表本身。在将其移入我正在使用的功能之前lenlst
len
lst
dword[lst+edi*4] ; offset
但现在它lst被转化为rdi书面
rdi
dword[rdi+edi*4]给我一个错误“错误:无效的有效地址”
dword[rdi+edi*4]
我该怎么做才能避免这种情况?