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.
次の命令に違いはありますか (フラグの影響以外に)?
ADD R6, SP, #0xDC
と
LDR R6, [SP, #0xDC]
ADDは数値を追加し、LDRはメモリからレジスタにデータをロードします。
ADD R6, SP, #0xDC -> R6 = SP + 0xDC LDR R6, [SP, #0xDC] -> R6 = memory_contents_of_address(SP + 0xDC)