Rev. 1.50, 10/04, page 267 of 448
Operation:
MOVI(int i, int n) /* MOV #imm,Rn */
{
if ((i&0x80)==0) R[n] = (0x000000FF & i);
else R[n] = (0xFFFFFF00 | i);
PC += 2;
}
MOVWI(d, n) /* MOV.W @(disp,PC),Rn */
{
unsigned int disp;
disp = (unsigned int)(0x000000FF & d);
R[n] = (int)Read_Word(PC+4+(disp<<1));
if ((R[n]&0x8000)==0) R[n] &= 0x0000FFFF;
else R[n] |= 0xFFFF0000;
PC += 2;
}
MOVLI(int d, int n)/* MOV.L @(disp,PC),Rn */
{
unsigned int disp;
disp = (unsigned int)(0x000000FF & (int)d);
R[n] = Read_Long((PC & 0xFF4+(disp<<2));
PC += 2;
}
Summary of Contents for SuperH SH-4A
Page 2: ...Rev 1 50 10 04 page ii of xx ...
Page 8: ...Rev 1 50 10 04 page viii of xx ...
Page 116: ...Rev 1 50 10 04 page 96 of 448 ...
Page 178: ...Rev 1 50 10 04 page 158 of 448 ...
Page 206: ...Rev 1 50 10 04 page 186 of 448 ...
Page 231: ...Rev 1 50 10 04 page 211 of 448 Possible Exceptions Slot illegal instruction exception ...
Page 235: ...Rev 1 50 10 04 page 215 of 448 Possible Exceptions Slot illegal instruction exception ...
Page 238: ...Rev 1 50 10 04 page 218 of 448 Possible Exceptions Slot illegal instruction exception ...
Page 408: ...Rev 1 50 10 04 page 388 of 448 Possible Exceptions Inexact Not generated when FPSCR PR 1 ...
Page 446: ...Rev 1 50 10 04 page 426 of 448 ...
Page 468: ...Rev 1 50 10 04 page 448 of 448 ...
Page 471: ......
Page 472: ...SH 4A Software Manual ...