문제

I am wondering if somebody could explain to me the difference between the LW (load word) and the LL (load linked word) instructions are in MIPS? I cannot seem to find any online sources that distinguish the two from each other and my book does not seem to distinguish them form each other either at the moment. Thanks

도움이 되었습니까?

해결책

The LL instruction is part of the load linked / store conditional instruction pair, which is used for synchronization in multiprocessor environments.

Unless you are specifically writing SMP synchronization code, ignore LL, and use LW in all situations.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top