Rev. 1.50, 10/04, page 348 of 448
10.2.4
LDC (Load to Control Register): System Control Instruction (Privileged
Instruction)
Format
Operation
Instruction Code
Cycle
T Bit
LDC Rm,SR
Rm
→
SR
0100mmmm00001110
4 LSB
LDC.L @Rm+,SR
(Rm)
→
SR, Rm+4
→
Rm
0100mmmm00000111
4 LSB
Description:
This instruction stores the source operand in the control register SR.
Notes:
This instruction is only usable in privileged mode. Issuing this instruction in user mode
will cause an illegal instruction exception.
Operation:
LDCSR(int m) /* LDC Rm,SR : Privileged */
{
SR = R[m] & 0x700083F3;
PC += 2;
}
LDCMSR(int m) /* LDC.L @Rm+,SR: Privileged */
{
SR = Read
_
Long(R[m]) & 0x700083F3;
R[m] += 4;
PC += 2;
}
Possible exception:
•
Data TLB multiple-hit exception
•
General illegal instruction exception
•
Slot illegal instruction exception
•
Data TLB miss exception
•
Data TLB protection violation exception
•
Data address error
Содержание SuperH SH-4A
Страница 2: ...Rev 1 50 10 04 page ii of xx ...
Страница 8: ...Rev 1 50 10 04 page viii of xx ...
Страница 116: ...Rev 1 50 10 04 page 96 of 448 ...
Страница 178: ...Rev 1 50 10 04 page 158 of 448 ...
Страница 206: ...Rev 1 50 10 04 page 186 of 448 ...
Страница 231: ...Rev 1 50 10 04 page 211 of 448 Possible Exceptions Slot illegal instruction exception ...
Страница 235: ...Rev 1 50 10 04 page 215 of 448 Possible Exceptions Slot illegal instruction exception ...
Страница 238: ...Rev 1 50 10 04 page 218 of 448 Possible Exceptions Slot illegal instruction exception ...
Страница 408: ...Rev 1 50 10 04 page 388 of 448 Possible Exceptions Inexact Not generated when FPSCR PR 1 ...
Страница 445: ...Rev 1 50 10 04 page 425 of 448 Possible Exceptions Invalid operation Overflow Underflow Inexact ...
Страница 446: ...Rev 1 50 10 04 page 426 of 448 ...
Страница 468: ...Rev 1 50 10 04 page 448 of 448 ...
Страница 471: ......
Страница 472: ...SH 4A Software Manual ...