Rev. 1.50, 10/04, page 353 of 448
Examples:
• STS
Example 1:
MOV.L #H'12ABCDEF, R12
LDS R12, FPUL
STS FPUL, R13
; After executing the STS instruction:
; R13 = 12ABCDEF
Example 2:
STS FPSCR, R2
; After executing the STS instruction:
; The current content of FPSCR is stored in register R2
• STS.L
Example 1:
MOV.L #H'0C700148, R7
STS.L FPUL, @-R7
; Before executing the STS.L instruction:
; R7 = 0C700148
; After executing the STS.L instruction:
; R7 = 0C700144, and the content of FPUL is saved at memory
; location 0C700144.
Example 2:
MOV.L #H'0C700154, R8
STS.L FPSCR, @-R8
; After executing the STS.L instruction:
; The content of FPSCR is saved at memory location 0C700150.
Possible Exceptions:
• Data TLB multiple-hit exception
• Data TLB miss exception
• Data TLB protection violation exception
• Initial page write exception
• Data address error