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.
int А; int32_t matr1[10] = { 3,10,100,1000,2,40,200,3}; // first matrix int32_t result[10] = {}; //result ... _asm{ lea eax,[matr1] lea edx,[result] movq mm0,[eax] movd[edx],mm0 }
如何继续代码,例如数组的 3 个元素存储在变量 A 中。也就是说,我只需要获取一个元素并将其保存到一个变量中