Search
lxdream.org :: lxdream/src/sh4/sh4core.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/sh4/sh4core.c
changeset 2:42349f6ea216
prev1:eea311cfd33e
next9:2784c7660165
author nkeynes
date Sat Oct 02 05:49:39 2004 +0000 (19 years ago)
permissions -rw-r--r--
last change compile fix
view annotate diff log raw
     1 #include <math.h>
     2 #include "dream.h"
     3 #include "sh4core.h"
     4 #include "sh4mmio.h"
     5 #include "mem.h"
     6 #include "intc.h"
     8 struct sh4_registers sh4r;
    10 static int running = 0;
    12 void sh4_init(void)
    13 {
    14     register_io_regions( mmio_list_sh4mmio );
    15 }
    17 void sh4_reset(void)
    18 {
    19     sh4r.pc    = 0xA0000000;
    20     sh4r.new_pc= 0xA0000002;
    21     sh4r.vbr   = 0x00000000;
    22     sh4r.fpscr = 0x00040001;
    23     sh4r.sr    = 0x700000F0;
    24     sh4r.icount= 0;
    25     /* Everything else is undefined anyway, so don't bother setting it */
    26     intc_reset();
    27 }
    29 void sh4_set_pc( int pc )
    30 {
    31     sh4r.pc = pc;
    32     sh4r.new_pc = pc+2;
    33 }
    35 void sh4_stop(void)
    36 {
    37     running = 0;
    38 }
    40 void sh4_run(void)
    41 {
    42     running = 1;
    43     while( running ) {
    44         sh4_execute_instruction();
    45     }
    46 }
    48 void sh4_runfor(uint32_t count)
    49 {
    50     running = 1;
    51     while( running && count--) {
    52         int pc = sh4r.pc;
    53         sh4_execute_instruction();
    54         /*
    55         if( sh4r.pc == 0x8C0C1636 ||
    56             sh4r.pc == 0x8C0C1634 ) {
    57             WARN( "Branching to %08X from %08X", sh4r.pc, pc );
    58             sh4_stop();
    59             }*/
    60     }
    61 }
    63 int sh4_isrunning(void)
    64 {
    65     return running;
    66 }
    68 void sh4_runto( uint32_t target_pc, uint32_t count )
    69 {
    70     running = 1;
    71     while( running && count--) {
    72         sh4_execute_instruction();
    73         if( sh4r.pc == target_pc ) {
    74             running = 0;
    75             break;
    76         }
    77     }
    78 }
    80 #define UNDEF(ir) do{ ERROR( "Raising exception on undefined instruction at %08x, opcode = %04x", sh4r.pc, ir ); sh4_stop(); RAISE( EXC_ILLEGAL, EXV_ILLEGAL ); }while(0)
    81 #define UNIMP(ir) do{ ERROR( "Halted on unimplemented instruction at %08x, opcode = %04x", sh4r.pc, ir ); sh4_stop(); return; }while(0)
    83 #define RAISE( x, v ) do{ \
    84     if( sh4r.vbr == 0 ) { \
    85         ERROR( "%08X: VBR not initialized while raising exception %03X, halting", sh4r.pc, x ); \
    86         sh4_stop(); \
    87     } else { \
    88         sh4r.spc = sh4r.pc + 2; \
    89         sh4r.ssr = sh4_read_sr(); \
    90         sh4r.sgr = sh4r.r[15]; \
    91         MMIO_WRITE(MMU,EXPEVT,x); \
    92         sh4r.pc = sh4r.vbr + v; \
    93         sh4r.new_pc = sh4r.pc + 2; \
    94         sh4_load_sr( sh4r.ssr |SR_MD|SR_BL|SR_RB ); \
    95     } \
    96     return; } while(0)
    98 #define MEM_READ_BYTE( addr ) mem_read_byte(addr)
    99 #define MEM_READ_WORD( addr ) mem_read_word(addr)
   100 #define MEM_READ_LONG( addr ) mem_read_long(addr)
   101 #define MEM_WRITE_BYTE( addr, val ) mem_write_byte(addr, val)
   102 #define MEM_WRITE_WORD( addr, val ) mem_write_word(addr, val)
   103 #define MEM_WRITE_LONG( addr, val ) mem_write_long(addr, val)
   105 #define MEM_FP_READ( addr, reg ) if( IS_FPU_DOUBLESIZE() ) { \
   106     ((uint32_t *)FR)[(reg)&0xE0] = mem_read_long(addr); \
   107     ((uint32_t *)FR)[(reg)|1] = mem_read_long(addr+4); \
   108 } else ((uint32_t *)FR)[reg] = mem_read_long(addr)
   110 #define MEM_FP_WRITE( addr, reg ) if( IS_FPU_DOUBLESIZE() ) { \
   111     mem_write_long( addr, ((uint32_t *)FR)[(reg)&0xE0] ); \
   112     mem_write_long( addr+4, ((uint32_t *)FR)[(reg)|1] ); \
   113 } else mem_write_long( addr, ((uint32_t *)FR)[reg] )
   115 #define FP_WIDTH (IS_FPU_DOUBLESIZE() ? 8 : 4)
   117 #define EXC_POWER_RESET  0x000 /* vector special */
   118 #define EXC_MANUAL_RESET 0x020
   119 #define EXC_SLOT_ILLEGAL 0x1A0
   120 #define EXC_ILLEGAL      0x180
   121 #define EXV_ILLEGAL      0x100
   122 #define EXC_TRAP         0x160
   123 #define EXV_TRAP         0x100
   124 #define EXC_FPDISABLE    0x800
   125 #define EXV_FPDISABLE    0x100
   127 #define CHECK( x, c, v ) if( !x ) RAISE( c, v )
   128 #define CHECKPRIV() CHECK( IS_SH4_PRIVMODE(), EXC_ILLEGAL, EXV_ILLEGAL )
   129 #define CHECKFPUEN() CHECK( IS_FPU_ENABLED(), EXC_FPDISABLE, EXV_FPDISABLE )
   130 #define CHECKDEST(p) if( (p) == 0 ) { ERROR( "%08X: Branch/jump to NULL, CPU halted", sh4r.pc ); sh4_stop(); return; }
   131 #define CHECKSLOTILLEGAL() if(sh4r.in_delay_slot) { RAISE(EXC_SLOT_ILLEGAL,EXV_ILLEGAL); }
   133 static void sh4_switch_banks( )
   134 {
   135     uint32_t tmp[8];
   137     memcpy( tmp, sh4r.r, sizeof(uint32_t)*8 );
   138     memcpy( sh4r.r, sh4r.r_bank, sizeof(uint32_t)*8 );
   139     memcpy( sh4r.r_bank, tmp, sizeof(uint32_t)*8 );
   140 }
   142 static void sh4_load_sr( uint32_t newval )
   143 {
   144     if( (newval ^ sh4r.sr) & SR_RB )
   145         sh4_switch_banks();
   146     sh4r.sr = newval;
   147     sh4r.t = (newval&SR_T) ? 1 : 0;
   148     sh4r.s = (newval&SR_S) ? 1 : 0;
   149     sh4r.m = (newval&SR_M) ? 1 : 0;
   150     sh4r.q = (newval&SR_Q) ? 1 : 0;
   151     intc_mask_changed();
   152 }
   154 static uint32_t sh4_read_sr( void )
   155 {
   156     /* synchronize sh4r.sr with the various bitflags */
   157     sh4r.sr &= SR_MQSTMASK;
   158     if( sh4r.t ) sh4r.sr |= SR_T;
   159     if( sh4r.s ) sh4r.sr |= SR_S;
   160     if( sh4r.m ) sh4r.sr |= SR_M;
   161     if( sh4r.q ) sh4r.sr |= SR_Q;
   162     return sh4r.sr;
   163 }
   164 /* function for external use */
   165 void sh4_raise_exception( int code, int vector )
   166 {
   167     RAISE(code, vector);
   168 }
   170 static void sh4_accept_interrupt( void )
   171 {
   172     uint32_t code = intc_accept_interrupt();
   173     sh4r.ssr = sh4_read_sr();
   174     sh4r.spc = sh4r.pc;
   175     sh4r.sgr = sh4r.r[15];
   176     sh4_load_sr( sh4r.ssr|SR_BL|SR_MD|SR_RB );
   177     MMIO_WRITE( MMU, INTEVT, code );
   178     sh4r.pc = sh4r.vbr + 0x600;
   179     sh4r.new_pc = sh4r.pc + 2;
   180     WARN( "Accepting interrupt %03X, from %08X => %08X", code, sh4r.spc, sh4r.pc );
   181 }
   183 void sh4_execute_instruction( void )
   184 {
   185     int pc;
   186     unsigned short ir;
   187     uint32_t tmp;
   188     uint64_t tmpl;
   190 #define R0 sh4r.r[0]
   191 #define FR0 (FR[0])
   192 #define RN(ir) sh4r.r[(ir&0x0F00)>>8]
   193 #define RN_BANK(ir) sh4r.r_bank[(ir&0x0070)>>4]
   194 #define RM(ir) sh4r.r[(ir&0x00F0)>>4]
   195 #define DISP4(ir) (ir&0x000F) /* 4-bit displacements are *NOT* sign-extended */
   196 #define DISP8(ir) (ir&0x00FF)
   197 #define PCDISP8(ir) SIGNEXT8(ir&0x00FF)
   198 #define IMM8(ir) SIGNEXT8(ir&0x00FF)
   199 #define UIMM8(ir) (ir&0x00FF) /* Unsigned immmediate */
   200 #define DISP12(ir) SIGNEXT12(ir&0x0FFF)
   201 #define FVN(ir) ((ir&0x0C00)>>8)
   202 #define FVM(ir) ((ir&0x0300)>>6)
   203 #define FRN(ir) (FR[(ir&0x0F00)>>8])
   204 #define FRM(ir) (FR[(ir&0x00F0)>>4])
   205 #define FRNi(ir) (((uint32_t *)FR)[(ir&0x0F00)>>8])
   206 #define FRMi(ir) (((uint32_t *)FR)[(ir&0x00F0)>>4])
   207 #define DRN(ir) (((double *)FR)[(ir&0x0E00)>>9])
   208 #define DRM(ir) (((double *)FR)[(ir&0x00E0)>>5])
   209 #define DRNi(ir) (((uint64_t *)FR)[(ir&0x0E00)>>9])
   210 #define DRMi(ir) (((uint64_t *)FR)[(ir&0x00E0)>>5])
   211 #define FRNn(ir) ((ir&0x0F00)>>8)
   212 #define FRMn(ir) ((ir&0x00F0)>>4)
   213 #define FPULf   *((float *)&sh4r.fpul)
   214 #define FPULi    (sh4r.fpul)
   216     if( SH4_INT_PENDING() ) 
   217         sh4_accept_interrupt();
   219     pc = sh4r.pc;
   220     ir = MEM_READ_WORD(pc);
   221     sh4r.icount++;
   223     switch( (ir&0xF000)>>12 ) {
   224         case 0: /* 0000nnnnmmmmxxxx */
   225             switch( ir&0x000F ) {
   226                 case 2:
   227                     switch( (ir&0x00F0)>>4 ) {
   228                         case 0: /* STC     SR, Rn */
   229                             CHECKPRIV();
   230                             RN(ir) = sh4_read_sr();
   231                             break;
   232                         case 1: /* STC     GBR, Rn */
   233                             RN(ir) = sh4r.gbr;
   234                             break;
   235                         case 2: /* STC     VBR, Rn */
   236                             CHECKPRIV();
   237                             RN(ir) = sh4r.vbr;
   238                             break;
   239                         case 3: /* STC     SSR, Rn */
   240                             CHECKPRIV();
   241                             RN(ir) = sh4r.ssr;
   242                             break;
   243                         case 4: /* STC     SPC, Rn */
   244                             CHECKPRIV();
   245                             RN(ir) = sh4r.spc;
   246                             break;
   247                         case 8: case 9: case 10: case 11: case 12: case 13:
   248                         case 14: case 15:/* STC     Rm_bank, Rn */
   249                             CHECKPRIV();
   250                             RN(ir) = RN_BANK(ir);
   251                             break;
   252                         default: UNDEF(ir);
   253                     }
   254                     break;
   255                 case 3:
   256                     switch( (ir&0x00F0)>>4 ) {
   257                         case 0: /* BSRF    Rn */
   258                             CHECKDEST( pc + 4 + RN(ir) );
   259                             CHECKSLOTILLEGAL();
   260                             sh4r.in_delay_slot = 1;
   261                             sh4r.pr = sh4r.pc + 4;
   262                             sh4r.pc = sh4r.new_pc;
   263                             sh4r.new_pc = pc + 4 + RN(ir);
   264                             return;
   265                         case 2: /* BRAF    Rn */
   266                             CHECKDEST( pc + 4 + RN(ir) );
   267                             CHECKSLOTILLEGAL();
   268                             sh4r.in_delay_slot = 1;
   269                             sh4r.pc = sh4r.new_pc;
   270                             sh4r.new_pc = pc + 4 + RN(ir);
   271                             return;
   272                         case 8: /* PREF    [Rn] */
   273                             tmp = RN(ir);
   274                             if( (tmp & 0xFC000000) == 0xE0000000 ) {
   275                                 /* Store queue operation */
   276                                 int queue = (tmp&0x20)>>2;
   277                                 int32_t *src = &sh4r.store_queue[queue];
   278                                 uint32_t hi = (MMIO_READ( MMU, (queue == 0 ? QACR0 : QACR1) ) & 0x1C) << 24;
   279                                 uint32_t target = tmp&0x03FFFFE0 | hi;
   280                                 mem_copy_to_sh4( target, src, 32 );
   281                                 WARN( "Executed SQ%c => %08X",
   282                                       (queue == 0 ? '0' : '1'), target );
   283                             }
   284                             break;
   285                         case 9: /* OCBI    [Rn] */
   286                         case 10:/* OCBP    [Rn] */
   287                         case 11:/* OCBWB   [Rn] */
   288                             /* anything? */
   289                             break;
   290                         case 12:/* MOVCA.L R0, [Rn] */
   291                             UNIMP(ir);
   292                         default: UNDEF(ir);
   293                     }
   294                     break;
   295                 case 4: /* MOV.B   Rm, [R0 + Rn] */
   296                     MEM_WRITE_BYTE( R0 + RN(ir), RM(ir) );
   297                     break;
   298                 case 5: /* MOV.W   Rm, [R0 + Rn] */
   299                     MEM_WRITE_WORD( R0 + RN(ir), RM(ir) );
   300                     break;
   301                 case 6: /* MOV.L   Rm, [R0 + Rn] */
   302                     MEM_WRITE_LONG( R0 + RN(ir), RM(ir) );
   303                     break;
   304                 case 7: /* MUL.L   Rm, Rn */
   305                     sh4r.mac = (sh4r.mac&0xFFFFFFFF00000000LL) |
   306                         (RM(ir) * RN(ir));
   307                     break;
   308                 case 8: 
   309                     switch( (ir&0x0FF0)>>4 ) {
   310                         case 0: /* CLRT    */
   311                             sh4r.t = 0;
   312                             break;
   313                         case 1: /* SETT    */
   314                             sh4r.t = 1;
   315                             break;
   316                         case 2: /* CLRMAC  */
   317                             sh4r.mac = 0;
   318                             break;
   319                         case 3: /* LDTLB   */
   320                             break;
   321                         case 4: /* CLRS    */
   322                             sh4r.s = 0;
   323                             break;
   324                         case 5: /* SETS    */
   325                             sh4r.s = 1;
   326                             break;
   327                         default: UNDEF(ir);
   328                     }
   329                     break;
   330                 case 9: 
   331                     if( (ir&0x00F0) == 0x20 ) /* MOVT    Rn */
   332                         RN(ir) = sh4r.t;
   333                     else if( ir == 0x0019 ) /* DIV0U   */
   334                         sh4r.m = sh4r.q = sh4r.t = 0;
   335                     else if( ir == 0x0009 )
   336                         /* NOP     */;
   337                     else UNDEF(ir);
   338                     break;
   339                 case 10:
   340                     switch( (ir&0x00F0) >> 4 ) {
   341                         case 0: /* STS     MACH, Rn */
   342                             RN(ir) = sh4r.mac >> 32;
   343                             break;
   344                         case 1: /* STS     MACL, Rn */
   345                             RN(ir) = (uint32_t)sh4r.mac;
   346                             break;
   347                         case 2: /* STS     PR, Rn */
   348                             RN(ir) = sh4r.pr;
   349                             break;
   350                         case 3: /* STC     SGR, Rn */
   351                             CHECKPRIV();
   352                             RN(ir) = sh4r.sgr;
   353                             break;
   354                         case 5:/* STS      FPUL, Rn */
   355                             RN(ir) = sh4r.fpul;
   356                             break;
   357                         case 6: /* STS     FPSCR, Rn */
   358                             RN(ir) = sh4r.fpscr;
   359                             break;
   360                         case 15:/* STC     DBR, Rn */
   361                             CHECKPRIV();
   362                             RN(ir) = sh4r.dbr;
   363                             break;
   364                         default: UNDEF(ir);
   365                     }
   366                     break;
   367                 case 11:
   368                     switch( (ir&0x0FF0)>>4 ) {
   369                         case 0: /* RTS     */
   370                             CHECKDEST( sh4r.pr );
   371                             CHECKSLOTILLEGAL();
   372                             sh4r.in_delay_slot = 1;
   373                             sh4r.pc = sh4r.new_pc;
   374                             sh4r.new_pc = sh4r.pr;
   375                             return;
   376                         case 1: /* SLEEP   */
   377                             running = 0;
   378                             break;
   379                         case 2: /* RTE     */
   380                             CHECKPRIV();
   381                             CHECKDEST( sh4r.spc );
   382                             CHECKSLOTILLEGAL();
   383                             sh4r.in_delay_slot = 1;
   384                             sh4r.pc = sh4r.new_pc;
   385                             sh4r.new_pc = sh4r.spc;
   386                             sh4_load_sr( sh4r.ssr );
   387                             WARN( "RTE => %08X", sh4r.new_pc );
   388                             return;
   389                         default:UNDEF(ir);
   390                     }
   391                     break;
   392                 case 12:/* MOV.B   [R0+R%d], R%d */
   393                     RN(ir) = MEM_READ_BYTE( R0 + RM(ir) );
   394                     break;
   395                 case 13:/* MOV.W   [R0+R%d], R%d */
   396                     RN(ir) = MEM_READ_WORD( R0 + RM(ir) );
   397                     break;
   398                 case 14:/* MOV.L   [R0+R%d], R%d */
   399                     RN(ir) = MEM_READ_LONG( R0 + RM(ir) );
   400                     break;
   401                 case 15:/* MAC.L   [Rm++], [Rn++] */
   402                     tmpl = ( SIGNEXT32(MEM_READ_LONG(RM(ir))) *
   403                                   SIGNEXT32(MEM_READ_LONG(RN(ir))) );
   404                     if( sh4r.s ) {
   405                         /* 48-bit Saturation. Yuch */
   406                         tmpl += SIGNEXT48(sh4r.mac);
   407                         if( tmpl < 0xFFFF800000000000LL )
   408                             tmpl = 0xFFFF800000000000LL;
   409                         else if( tmpl > 0x00007FFFFFFFFFFFLL )
   410                             tmpl = 0x00007FFFFFFFFFFFLL;
   411                         sh4r.mac = (sh4r.mac&0xFFFF000000000000LL) |
   412                             (tmpl&0x0000FFFFFFFFFFFFLL);
   413                     } else sh4r.mac = tmpl;
   415                     RM(ir) += 4;
   416                     RN(ir) += 4;
   418                     break;
   419                 default: UNDEF(ir);
   420             }
   421             break;
   422         case 1: /* 0001nnnnmmmmdddd */
   423             /* MOV.L   Rm, [Rn + disp4*4] */
   424             MEM_WRITE_LONG( RN(ir) + (DISP4(ir)<<2), RM(ir) );
   425             break;
   426         case 2: /* 0010nnnnmmmmxxxx */
   427             switch( ir&0x000F ) {
   428                 case 0: /* MOV.B   Rm, [Rn] */
   429                     MEM_WRITE_BYTE( RN(ir), RM(ir) );
   430                     break;
   431                 case 1: /* MOV.W   Rm, [Rn] */
   432                     MEM_WRITE_WORD( RN(ir), RM(ir) );
   433                     break;
   434                 case 2: /* MOV.L   Rm, [Rn] */
   435                     MEM_WRITE_LONG( RN(ir), RM(ir) );
   436                     break;
   437                 case 3: UNDEF(ir);
   438                     break;
   439                 case 4: /* MOV.B   Rm, [--Rn] */
   440                     RN(ir) --;
   441                     MEM_WRITE_BYTE( RN(ir), RM(ir) );
   442                     break;
   443                 case 5: /* MOV.W   Rm, [--Rn] */
   444                     RN(ir) -= 2;
   445                     MEM_WRITE_WORD( RN(ir), RM(ir) );
   446                     break;
   447                 case 6: /* MOV.L   Rm, [--Rn] */
   448                     RN(ir) -= 4;
   449                     MEM_WRITE_LONG( RN(ir), RM(ir) );
   450                     break;
   451                 case 7: /* DIV0S   Rm, Rn */
   452                     sh4r.q = RN(ir)>>31;
   453                     sh4r.m = RM(ir)>>31;
   454                     sh4r.t = sh4r.q ^ sh4r.m;
   455                     break;
   456                 case 8: /* TST     Rm, Rn */
   457                     sh4r.t = (RN(ir)&RM(ir) ? 0 : 1);
   458                     break;
   459                 case 9: /* AND     Rm, Rn */
   460                     RN(ir) &= RM(ir);
   461                     break;
   462                 case 10:/* XOR     Rm, Rn */
   463                     RN(ir) ^= RM(ir);
   464                     break;
   465                 case 11:/* OR      Rm, Rn */
   466                     RN(ir) |= RM(ir);
   467                     break;
   468                 case 12:/* CMP/STR Rm, Rn */
   469                     /* set T = 1 if any byte in RM & RN is the same */
   470                     tmp = RM(ir) ^ RN(ir);
   471                     sh4r.t = ((tmp&0x000000FF)==0 || (tmp&0x0000FF00)==0 ||
   472                               (tmp&0x00FF0000)==0 || (tmp&0xFF000000)==0)?1:0;
   473                     break;
   474                 case 13:/* XTRCT   Rm, Rn */
   475                     RN(ir) = (RN(ir)>>16) | (RM(ir)<<16);
   476                     break;
   477                 case 14:/* MULU.W  Rm, Rn */
   478                     sh4r.mac = (sh4r.mac&0xFFFFFFFF00000000LL) |
   479                         (uint32_t)((RM(ir)&0xFFFF) * (RN(ir)&0xFFFF));
   480                     break;
   481                 case 15:/* MULS.W  Rm, Rn */
   482                     sh4r.mac = (sh4r.mac&0xFFFFFFFF00000000LL) |
   483                         (uint32_t)(SIGNEXT32(RM(ir)&0xFFFF) * SIGNEXT32(RN(ir)&0xFFFF));
   484                     break;
   485             }
   486             break;
   487         case 3: /* 0011nnnnmmmmxxxx */
   488             switch( ir&0x000F ) {
   489                 case 0: /* CMP/EQ  Rm, Rn */
   490                     sh4r.t = ( RM(ir) == RN(ir) ? 1 : 0 );
   491                     break;
   492                 case 2: /* CMP/HS  Rm, Rn */
   493                     sh4r.t = ( RN(ir) >= RM(ir) ? 1 : 0 );
   494                     break;
   495                 case 3: /* CMP/GE  Rm, Rn */
   496                     sh4r.t = ( ((int32_t)RN(ir)) >= ((int32_t)RM(ir)) ? 1 : 0 );
   497                     break;
   498                 case 4: { /* DIV1    Rm, Rn */
   499                     /* This is just from the sh4p manual with some
   500                      * simplifications (someone want to check it's correct? :)
   501                      * Why they couldn't just provide a real DIV instruction...
   502                      * Please oh please let the translator batch these things
   503                      * up into a single DIV... */
   504                     uint32_t tmp0, tmp1, tmp2, dir;
   506                     dir = sh4r.q ^ sh4r.m;
   507                     sh4r.q = (RN(ir) >> 31);
   508                     tmp2 = RM(ir);
   509                     RN(ir) = (RN(ir) << 1) | sh4r.t;
   510                     tmp0 = RN(ir);
   511                     if( dir ) {
   512                         RN(ir) += tmp2;
   513                         tmp1 = (RN(ir)<tmp0 ? 1 : 0 );
   514                     } else {
   515                         RN(ir) -= tmp2;
   516                         tmp1 = (RN(ir)>tmp0 ? 1 : 0 );
   517                     }
   518                     sh4r.q ^= sh4r.m ^ tmp1;
   519                     sh4r.t = ( sh4r.q == sh4r.m ? 1 : 0 );
   520                     break; }
   521                 case 5: /* DMULU.L Rm, Rn */
   522                     sh4r.mac = ((uint64_t)RM(ir)) * ((uint64_t)RN(ir));
   523                     break;
   524                 case 6: /* CMP/HI  Rm, Rn */
   525                     sh4r.t = ( RN(ir) > RM(ir) ? 1 : 0 );
   526                     break;
   527                 case 7: /* CMP/GT  Rm, Rn */
   528                     sh4r.t = ( ((int32_t)RN(ir)) > ((int32_t)RM(ir)) ? 1 : 0 );
   529                     break;
   530                 case 8: /* SUB     Rm, Rn */
   531                     RN(ir) -= RM(ir);
   532                     break;
   533                 case 10:/* SUBC    Rm, Rn */
   534                     tmp = RN(ir);
   535                     RN(ir) = RN(ir) - RM(ir) - sh4r.t;
   536                     sh4r.t = (RN(ir) > tmp || (RN(ir) == tmp && sh4r.t == 1));
   537                     break;
   538                 case 11:/* SUBV    Rm, Rn */
   539                     UNIMP(ir);
   540                     break;
   541                 case 12:/* ADD     Rm, Rn */
   542                     RN(ir) += RM(ir);
   543                     break;
   544                 case 13:/* DMULS.L Rm, Rn */
   545                     sh4r.mac = SIGNEXT32(RM(ir)) * SIGNEXT32(RN(ir));
   546                     break;
   547                 case 14:/* ADDC    Rm, Rn */
   548                     tmp = RN(ir);
   549                     RN(ir) += RM(ir) + sh4r.t;
   550                     sh4r.t = ( RN(ir) < tmp || (RN(ir) == tmp && sh4r.t != 0) ? 1 : 0 );
   551                     break;
   552                 case 15:/* ADDV    Rm, Rn */
   553                     UNIMP(ir);
   554                     break;
   555                 default: UNDEF(ir);
   556             }
   557             break;
   558         case 4: /* 0100nnnnxxxxxxxx */
   559             switch( ir&0x00FF ) {
   560                 case 0x00: /* SHLL    Rn */
   561                     sh4r.t = RN(ir) >> 31;
   562                     RN(ir) <<= 1;
   563                     break;
   564                 case 0x01: /* SHLR    Rn */
   565                     sh4r.t = RN(ir) & 0x00000001;
   566                     RN(ir) >>= 1;
   567                     break;
   568                 case 0x02: /* STS.L   MACH, [--Rn] */
   569                     RN(ir) -= 4;
   570                     MEM_WRITE_LONG( RN(ir), (sh4r.mac>>32) );
   571                     break;
   572                 case 0x03: /* STC.L   SR, [--Rn] */
   573                     CHECKPRIV();
   574                     RN(ir) -= 4;
   575                     MEM_WRITE_LONG( RN(ir), sh4_read_sr() );
   576                     break;
   577                 case 0x04: /* ROTL    Rn */
   578                     sh4r.t = RN(ir) >> 31;
   579                     RN(ir) <<= 1;
   580                     RN(ir) |= sh4r.t;
   581                     break;
   582                 case 0x05: /* ROTR    Rn */
   583                     sh4r.t = RN(ir) & 0x00000001;
   584                     RN(ir) >>= 1;
   585                     RN(ir) |= (sh4r.t << 31);
   586                     break;
   587                 case 0x06: /* LDS.L   [Rn++], MACH */
   588                     sh4r.mac = (sh4r.mac & 0x00000000FFFFFFFF) |
   589                         (((uint64_t)MEM_READ_LONG(RN(ir)))<<32);
   590                     RN(ir) += 4;
   591                     break;
   592                 case 0x07: /* LDC.L   [Rn++], SR */
   593                     CHECKPRIV();
   594                     sh4_load_sr( MEM_READ_LONG(RN(ir)) );
   595                     RN(ir) +=4;
   596                     break;
   597                 case 0x08: /* SHLL2   Rn */
   598                     RN(ir) <<= 2;
   599                     break;
   600                 case 0x09: /* SHLR2   Rn */
   601                     RN(ir) >>= 2;
   602                     break;
   603                 case 0x0A: /* LDS     Rn, MACH */
   604                     sh4r.mac = (sh4r.mac & 0x00000000FFFFFFFF) |
   605                         (((uint64_t)RN(ir))<<32);
   606                     break;
   607                 case 0x0B: /* JSR     [Rn] */
   608                     CHECKDEST( RN(ir) );
   609                     CHECKSLOTILLEGAL();
   610                     sh4r.in_delay_slot = 1;
   611                     sh4r.pc = sh4r.new_pc;
   612                     sh4r.new_pc = RN(ir);
   613                     sh4r.pr = pc + 4;
   614                     return;
   615                 case 0x0E: /* LDC     Rn, SR */
   616                     CHECKPRIV();
   617                     sh4_load_sr( RN(ir) );
   618                     break;
   619                 case 0x10: /* DT      Rn */
   620                     RN(ir) --;
   621                     sh4r.t = ( RN(ir) == 0 ? 1 : 0 );
   622                     break;
   623                 case 0x11: /* CMP/PZ  Rn */
   624                     sh4r.t = ( ((int32_t)RN(ir)) >= 0 ? 1 : 0 );
   625                     break;
   626                 case 0x12: /* STS.L   MACL, [--Rn] */
   627                     RN(ir) -= 4;
   628                     MEM_WRITE_LONG( RN(ir), (uint32_t)sh4r.mac );
   629                     break;
   630                 case 0x13: /* STC.L   GBR, [--Rn] */
   631                     RN(ir) -= 4;
   632                     MEM_WRITE_LONG( RN(ir), sh4r.gbr );
   633                     break;
   634                 case 0x15: /* CMP/PL  Rn */
   635                     sh4r.t = ( ((int32_t)RN(ir)) > 0 ? 1 : 0 );
   636                     break;
   637                 case 0x16: /* LDS.L   [Rn++], MACL */
   638                     sh4r.mac = (sh4r.mac & 0xFFFFFFFF00000000LL) |
   639                         (uint64_t)((uint32_t)MEM_READ_LONG(RN(ir)));
   640                     RN(ir) += 4;
   641                     break;
   642                 case 0x17: /* LDC.L   [Rn++], GBR */
   643                     sh4r.gbr = MEM_READ_LONG(RN(ir));
   644                     RN(ir) +=4;
   645                     break;
   646                 case 0x18: /* SHLL8   Rn */
   647                     RN(ir) <<= 8;
   648                     break;
   649                 case 0x19: /* SHLR8   Rn */
   650                     RN(ir) >>= 8;
   651                     break;
   652                 case 0x1A: /* LDS     Rn, MACL */
   653                     sh4r.mac = (sh4r.mac & 0xFFFFFFFF00000000LL) |
   654                         (uint64_t)((uint32_t)(RN(ir)));
   655                     break;
   656                 case 0x1B: /* TAS.B   [Rn] */
   657                     tmp = MEM_READ_BYTE( RN(ir) );
   658                     sh4r.t = ( tmp == 0 ? 1 : 0 );
   659                     MEM_WRITE_BYTE( RN(ir), tmp | 0x80 );
   660                     break;
   661                 case 0x1E: /* LDC     Rn, GBR */
   662                     sh4r.gbr = RN(ir);
   663                     break;
   664                 case 0x20: /* SHAL    Rn */
   665                     sh4r.t = RN(ir) >> 31;
   666                     RN(ir) <<= 1;
   667                     break;
   668                 case 0x21: /* SHAR    Rn */
   669                     sh4r.t = RN(ir) & 0x00000001;
   670                     RN(ir) = ((int32_t)RN(ir)) >> 1;
   671                     break;
   672                 case 0x22: /* STS.L   PR, [--Rn] */
   673                     RN(ir) -= 4;
   674                     MEM_WRITE_LONG( RN(ir), sh4r.pr );
   675                     break;
   676                 case 0x23: /* STC.L   VBR, [--Rn] */
   677                     CHECKPRIV();
   678                     RN(ir) -= 4;
   679                     MEM_WRITE_LONG( RN(ir), sh4r.vbr );
   680                     break;
   681                 case 0x24: /* ROTCL   Rn */
   682                     tmp = RN(ir) >> 31;
   683                     RN(ir) <<= 1;
   684                     RN(ir) |= sh4r.t;
   685                     sh4r.t = tmp;
   686                     break;
   687                 case 0x25: /* ROTCR   Rn */
   688                     tmp = RN(ir) & 0x00000001;
   689                     RN(ir) >>= 1;
   690                     RN(ir) |= (sh4r.t << 31 );
   691                     sh4r.t = tmp;
   692                     break;
   693                 case 0x26: /* LDS.L   [Rn++], PR */
   694                     sh4r.pr = MEM_READ_LONG( RN(ir) );
   695                     RN(ir) += 4;
   696                     break;
   697                 case 0x27: /* LDC.L   [Rn++], VBR */
   698                     CHECKPRIV();
   699                     sh4r.vbr = MEM_READ_LONG(RN(ir));
   700                     RN(ir) +=4;
   701                     break;
   702                 case 0x28: /* SHLL16  Rn */
   703                     RN(ir) <<= 16;
   704                     break;
   705                 case 0x29: /* SHLR16  Rn */
   706                     RN(ir) >>= 16;
   707                     break;
   708                 case 0x2A: /* LDS     Rn, PR */
   709                     sh4r.pr = RN(ir);
   710                     break;
   711                 case 0x2B: /* JMP     [Rn] */
   712                     CHECKDEST( RN(ir) );
   713                     CHECKSLOTILLEGAL();
   714                     sh4r.in_delay_slot = 1;
   715                     sh4r.pc = sh4r.new_pc;
   716                     sh4r.new_pc = RN(ir);
   717                     return;
   718                 case 0x2E: /* LDC     Rn, VBR */
   719                     CHECKPRIV();
   720                     sh4r.vbr = RN(ir);
   721                     break;
   722                 case 0x32: /* STC.L   SGR, [--Rn] */
   723                     CHECKPRIV();
   724                     RN(ir) -= 4;
   725                     MEM_WRITE_LONG( RN(ir), sh4r.sgr );
   726                     break;
   727                 case 0x33: /* STC.L   SSR, [--Rn] */
   728                     CHECKPRIV();
   729                     RN(ir) -= 4;
   730                     MEM_WRITE_LONG( RN(ir), sh4r.ssr );
   731                     break;
   732                 case 0x37: /* LDC.L   [Rn++], SSR */
   733                     CHECKPRIV();
   734                     sh4r.ssr = MEM_READ_LONG(RN(ir));
   735                     RN(ir) +=4;
   736                     break;
   737                 case 0x3E: /* LDC     Rn, SSR */
   738                     CHECKPRIV();
   739                     sh4r.ssr = RN(ir);
   740                     break;
   741                 case 0x43: /* STC.L   SPC, [--Rn] */
   742                     CHECKPRIV();
   743                     RN(ir) -= 4;
   744                     MEM_WRITE_LONG( RN(ir), sh4r.spc );
   745                     break;
   746                 case 0x47: /* LDC.L   [Rn++], SPC */
   747                     CHECKPRIV();
   748                     sh4r.spc = MEM_READ_LONG(RN(ir));
   749                     RN(ir) +=4;
   750                     break;
   751                 case 0x4E: /* LDC     Rn, SPC */
   752                     CHECKPRIV();
   753                     sh4r.spc = RN(ir);
   754                     break;
   755                 case 0x52: /* STS.L   FPUL, [--Rn] */
   756                     RN(ir) -= 4;
   757                     MEM_WRITE_LONG( RN(ir), sh4r.fpul );
   758                     break;
   759                 case 0x56: /* LDS.L   [Rn++], FPUL */
   760                     sh4r.fpul = MEM_READ_LONG(RN(ir));
   761                     RN(ir) +=4;
   762                     break;
   763                 case 0x5A: /* LDS     Rn, FPUL */
   764                     sh4r.fpul = RN(ir);
   765                     break;
   766                 case 0x62: /* STS.L   FPSCR, [--Rn] */
   767                     RN(ir) -= 4;
   768                     MEM_WRITE_LONG( RN(ir), sh4r.fpscr );
   769                     break;
   770                 case 0x66: /* LDS.L   [Rn++], FPSCR */
   771                     sh4r.fpscr = MEM_READ_LONG(RN(ir));
   772                     RN(ir) +=4;
   773                     break;
   774                 case 0x6A: /* LDS     Rn, FPSCR */
   775                     sh4r.fpscr = RN(ir);
   776                     break;
   777                 case 0xF2: /* STC.L   DBR, [--Rn] */
   778                     CHECKPRIV();
   779                     RN(ir) -= 4;
   780                     MEM_WRITE_LONG( RN(ir), sh4r.dbr );
   781                     break;
   782                 case 0xF6: /* LDC.L   [Rn++], DBR */
   783                     CHECKPRIV();
   784                     sh4r.dbr = MEM_READ_LONG(RN(ir));
   785                     RN(ir) +=4;
   786                     break;
   787                 case 0xFA: /* LDC     Rn, DBR */
   788                     CHECKPRIV();
   789                     sh4r.dbr = RN(ir);
   790                     break;
   791                 case 0x83: case 0x93: case 0xA3: case 0xB3: case 0xC3:
   792                 case 0xD3: case 0xE3: case 0xF3: /* STC.L   Rn_BANK, [--Rn] */
   793                     CHECKPRIV();
   794                     RN(ir) -= 4;
   795                     MEM_WRITE_LONG( RN(ir), RN_BANK(ir) );
   796                     break;
   797                 case 0x87: case 0x97: case 0xA7: case 0xB7: case 0xC7:
   798                 case 0xD7: case 0xE7: case 0xF7: /* LDC.L   [Rn++], Rn_BANK */
   799                     CHECKPRIV();
   800                     RN_BANK(ir) = MEM_READ_LONG( RN(ir) );
   801                     RN(ir) += 4;
   802                     break;
   803                 case 0x8E: case 0x9E: case 0xAE: case 0xBE: case 0xCE:
   804                 case 0xDE: case 0xEE: case 0xFE: /* LDC     Rm, Rn_BANK */
   805                     CHECKPRIV();
   806                     RN_BANK(ir) = RM(ir);
   807                     break;
   808                 default:
   809                     if( (ir&0x000F) == 0x0F ) {
   810                         /* MAC.W   [Rm++], [Rn++] */
   811                         tmp = SIGNEXT16(MEM_READ_WORD(RM(ir))) *
   812                             SIGNEXT16(MEM_READ_WORD(RN(ir)));
   813                         if( sh4r.s ) {
   814                             /* FIXME */
   815                             UNIMP(ir);
   816                         } else sh4r.mac += SIGNEXT32(tmp);
   817                         RM(ir) += 2;
   818                         RN(ir) += 2;
   819                     } else if( (ir&0x000F) == 0x0C ) {
   820                         /* SHAD    Rm, Rn */
   821                         tmp = RM(ir);
   822                         if( (tmp & 0x80000000) == 0 ) RN(ir) <<= (tmp&0x1f);
   823                         else if( (tmp & 0x1F) == 0 )  ((int32_t)RN(ir)) >>=31;
   824                         else ((int32_t)RN(ir)) >>= (((~RM(ir)) & 0x1F)+1);
   825                     } else if( (ir&0x000F) == 0x0D ) {
   826                         /* SHLD    Rm, Rn */
   827                         tmp = RM(ir);
   828                         if( (tmp & 0x80000000) == 0 ) RN(ir) <<= (tmp&0x1f);
   829                         else if( (tmp & 0x1F) == 0 ) RN(ir) = 0;
   830                         else RN(ir) >>= (((~tmp) & 0x1F)+1);
   831                     } else UNDEF(ir);
   832             }
   833             break;
   834         case 5: /* 0101nnnnmmmmdddd */
   835             /* MOV.L   [Rm + disp4*4], Rn */
   836             RN(ir) = MEM_READ_LONG( RM(ir) + (DISP4(ir)<<2) );
   837             break;
   838         case 6: /* 0110xxxxxxxxxxxx */
   839             switch( ir&0x000f ) {
   840                 case 0: /* MOV.B   [Rm], Rn */
   841                     RN(ir) = MEM_READ_BYTE( RM(ir) );
   842                     break;
   843                 case 1: /* MOV.W   [Rm], Rn */
   844                     RN(ir) = MEM_READ_WORD( RM(ir) );
   845                     break;
   846                 case 2: /* MOV.L   [Rm], Rn */
   847                     RN(ir) = MEM_READ_LONG( RM(ir) );
   848                     break;
   849                 case 3: /* MOV     Rm, Rn */
   850                     RN(ir) = RM(ir);
   851                     break;
   852                 case 4: /* MOV.B   [Rm++], Rn */
   853                     RN(ir) = MEM_READ_BYTE( RM(ir) );
   854                     RM(ir) ++;
   855                     break;
   856                 case 5: /* MOV.W   [Rm++], Rn */
   857                     RN(ir) = MEM_READ_WORD( RM(ir) );
   858                     RM(ir) += 2;
   859                     break;
   860                 case 6: /* MOV.L   [Rm++], Rn */
   861                     RN(ir) = MEM_READ_LONG( RM(ir) );
   862                     RM(ir) += 4;
   863                     break;
   864                 case 7: /* NOT     Rm, Rn */
   865                     RN(ir) = ~RM(ir);
   866                     break;
   867                 case 8: /* SWAP.B  Rm, Rn */
   868                     RN(ir) = (RM(ir)&0xFFFF0000) | ((RM(ir)&0x0000FF00)>>8) |
   869                         ((RM(ir)&0x000000FF)<<8);
   870                     break;
   871                 case 9: /* SWAP.W  Rm, Rn */
   872                     RN(ir) = (RM(ir)>>16) | (RM(ir)<<16);
   873                     break;
   874                 case 10:/* NEGC    Rm, Rn */
   875                     tmp = 0 - RM(ir);
   876                     RN(ir) = tmp - sh4r.t;
   877                     sh4r.t = ( 0<tmp || tmp<RN(ir) ? 1 : 0 );
   878                     break;
   879                 case 11:/* NEG     Rm, Rn */
   880                     RN(ir) = 0 - RM(ir);
   881                     break;
   882                 case 12:/* EXTU.B  Rm, Rn */
   883                     RN(ir) = RM(ir)&0x000000FF;
   884                     break;
   885                 case 13:/* EXTU.W  Rm, Rn */
   886                     RN(ir) = RM(ir)&0x0000FFFF;
   887                     break;
   888                 case 14:/* EXTS.B  Rm, Rn */
   889                     RN(ir) = SIGNEXT8( RM(ir)&0x000000FF );
   890                     break;
   891                 case 15:/* EXTS.W  Rm, Rn */
   892                     RN(ir) = SIGNEXT16( RM(ir)&0x0000FFFF );
   893                     break;
   894             }
   895             break;
   896         case 7: /* 0111nnnniiiiiiii */
   897             /* ADD    imm8, Rn */
   898             RN(ir) += IMM8(ir);
   899             break;
   900         case 8: /* 1000xxxxxxxxxxxx */
   901             switch( (ir&0x0F00) >> 8 ) {
   902                 case 0: /* MOV.B   R0, [Rm + disp4] */
   903                     MEM_WRITE_BYTE( RM(ir) + DISP4(ir), R0 );
   904                     break;
   905                 case 1: /* MOV.W   R0, [Rm + disp4*2] */
   906                     MEM_WRITE_WORD( RM(ir) + (DISP4(ir)<<1), R0 );
   907                     break;
   908                 case 4: /* MOV.B   [Rm + disp4], R0 */
   909                     R0 = MEM_READ_BYTE( RM(ir) + DISP4(ir) );
   910                     break;
   911                 case 5: /* MOV.W   [Rm + disp4*2], R0 */
   912                     R0 = MEM_READ_WORD( RM(ir) + (DISP4(ir)<<1) );
   913                     break;
   914                 case 8: /* CMP/EQ  imm, R0 */
   915                     sh4r.t = ( R0 == IMM8(ir) ? 1 : 0 );
   916                     break;
   917                 case 9: /* BT      disp8 */
   918                     CHECKSLOTILLEGAL()
   919                     if( sh4r.t ) {
   920                         CHECKDEST( sh4r.pc + (PCDISP8(ir)<<1) + 4 )
   921                         sh4r.pc += (PCDISP8(ir)<<1) + 4;
   922                         sh4r.new_pc = sh4r.pc + 2;
   923                         return;
   924                     }
   925                     break;
   926                 case 11:/* BF      disp8 */
   927                     CHECKSLOTILLEGAL()
   928                     if( !sh4r.t ) {
   929                         CHECKDEST( sh4r.pc + (PCDISP8(ir)<<1) + 4 )
   930                         sh4r.pc += (PCDISP8(ir)<<1) + 4;
   931                         sh4r.new_pc = sh4r.pc + 2;
   932                         return;
   933                     }
   934                     break;
   935                 case 13:/* BT/S    disp8 */
   936                     CHECKSLOTILLEGAL()
   937                     if( sh4r.t ) {
   938                         CHECKDEST( sh4r.pc + (PCDISP8(ir)<<1) + 4 )
   939                         sh4r.in_delay_slot = 1;
   940                         sh4r.pc = sh4r.new_pc;
   941                         sh4r.new_pc = pc + (PCDISP8(ir)<<1) + 4;
   942                         sh4r.in_delay_slot = 1;
   943                         return;
   944                     }
   945                     break;
   946                 case 15:/* BF/S    disp8 */
   947                     CHECKSLOTILLEGAL()
   948                     if( !sh4r.t ) {
   949                         CHECKDEST( sh4r.pc + (PCDISP8(ir)<<1) + 4 )
   950                         sh4r.in_delay_slot = 1;
   951                         sh4r.pc = sh4r.new_pc;
   952                         sh4r.new_pc = pc + (PCDISP8(ir)<<1) + 4;
   953                         return;
   954                     }
   955                     break;
   956                 default: UNDEF(ir);
   957             }
   958             break;
   959         case 9: /* 1001xxxxxxxxxxxx */
   960             /* MOV.W   [disp8*2 + pc + 4], Rn */
   961             RN(ir) = MEM_READ_WORD( pc + 4 + (DISP8(ir)<<1) );
   962             break;
   963         case 10:/* 1010dddddddddddd */
   964             /* BRA     disp12 */
   965             CHECKDEST( sh4r.pc + (DISP12(ir)<<1) + 4 )
   966             CHECKSLOTILLEGAL()
   967             sh4r.in_delay_slot = 1;
   968             sh4r.pc = sh4r.new_pc;
   969             sh4r.new_pc = pc + 4 + (DISP12(ir)<<1);
   970             return;
   971         case 11:/* 1011dddddddddddd */
   972             /* BSR     disp12 */
   973             CHECKDEST( sh4r.pc + (DISP12(ir)<<1) + 4 )
   974             CHECKSLOTILLEGAL()
   975             sh4r.in_delay_slot = 1;
   976             sh4r.pr = pc + 4;
   977             sh4r.pc = sh4r.new_pc;
   978             sh4r.new_pc = pc + 4 + (DISP12(ir)<<1);
   979             return;
   980         case 12:/* 1100xxxxdddddddd */
   981         switch( (ir&0x0F00)>>8 ) {
   982                 case 0: /* MOV.B  R0, [GBR + disp8] */
   983                     MEM_WRITE_BYTE( sh4r.gbr + DISP8(ir), R0 );
   984                     break;
   985                 case 1: /* MOV.W  R0, [GBR + disp8*2] */
   986                     MEM_WRITE_WORD( sh4r.gbr + (DISP8(ir)<<1), R0 );
   987                     break;
   988                 case  2: /*MOV.L   R0, [GBR + disp8*4] */
   989                     MEM_WRITE_LONG( sh4r.gbr + (DISP8(ir)<<2), R0 );
   990                     break;
   991                 case 3: /* TRAPA   imm8 */
   992                     CHECKSLOTILLEGAL()
   993                     sh4r.in_delay_slot = 1;
   994                     MMIO_WRITE( MMU, TRA, UIMM8(ir) );
   995                     sh4r.pc = sh4r.new_pc;  /* RAISE ends the instruction */
   996                     sh4r.new_pc += 2;
   997                     RAISE( EXC_TRAP, EXV_TRAP );
   998                     break;
   999                 case 4: /* MOV.B   [GBR + disp8], R0 */
  1000                     R0 = MEM_READ_BYTE( sh4r.gbr + DISP8(ir) );
  1001                     break;
  1002                 case 5: /* MOV.W   [GBR + disp8*2], R0 */
  1003                     R0 = MEM_READ_WORD( sh4r.gbr + (DISP8(ir)<<1) );
  1004                     break;
  1005                 case 6: /* MOV.L   [GBR + disp8*4], R0 */
  1006                     R0 = MEM_READ_LONG( sh4r.gbr + (DISP8(ir)<<2) );
  1007                     break;
  1008                 case 7: /* MOVA    disp8 + pc&~3 + 4, R0 */
  1009                     R0 = (pc&0xFFFFFFFC) + (DISP8(ir)<<2) + 4;
  1010                     break;
  1011                 case 8: /* TST     imm8, R0 */
  1012                     sh4r.t = (R0 & UIMM8(ir) ? 0 : 1);
  1013                     break;
  1014                 case 9: /* AND     imm8, R0 */
  1015                     R0 &= UIMM8(ir);
  1016                     break;
  1017                 case 10:/* XOR     imm8, R0 */
  1018                     R0 ^= UIMM8(ir);
  1019                     break;
  1020                 case 11:/* OR      imm8, R0 */
  1021                     R0 |= UIMM8(ir);
  1022                     break;
  1023                 case 12:/* TST.B   imm8, [R0+GBR] */
  1024                     sh4r.t = ( MEM_READ_BYTE(R0 + sh4r.gbr) & UIMM8(ir) ? 0 : 1 );
  1025                     break;
  1026                 case 13:/* AND.B   imm8, [R0+GBR] */
  1027                     MEM_WRITE_BYTE( R0 + sh4r.gbr,
  1028                                     UIMM8(ir) & MEM_READ_BYTE(R0 + sh4r.gbr) );
  1029                     break;
  1030                 case 14:/* XOR.B   imm8, [R0+GBR] */
  1031                     MEM_WRITE_BYTE( R0 + sh4r.gbr,
  1032                                     UIMM8(ir) ^ MEM_READ_BYTE(R0 + sh4r.gbr) );
  1033                     break;
  1034                 case 15:/* OR.B    imm8, [R0+GBR] */
  1035                     MEM_WRITE_BYTE( R0 + sh4r.gbr,
  1036                                     UIMM8(ir) | MEM_READ_BYTE(R0 + sh4r.gbr) );
  1037                     break;
  1039             break;
  1040         case 13:/* 1101nnnndddddddd */
  1041             /* MOV.L   [disp8*4 + pc&~3 + 4], Rn */
  1042             RN(ir) = MEM_READ_LONG( (pc&0xFFFFFFFC) + (DISP8(ir)<<2) + 4 );
  1043             break;
  1044         case 14:/* 1110nnnniiiiiiii */
  1045             /* MOV     imm8, Rn */
  1046             RN(ir) = IMM8(ir);
  1047             break;
  1048         case 15:/* 1111xxxxxxxxxxxx */
  1049             CHECKFPUEN();
  1050             switch( ir&0x000F ) {
  1051                 case 0: /* FADD    FRm, FRn */
  1052                     FRN(ir) += FRM(ir);
  1053                     break;
  1054                 case 1: /* FSUB    FRm, FRn */
  1055                     FRN(ir) -= FRM(ir);
  1056                     break;
  1057                 case 2: /* FMUL    FRm, FRn */
  1058                     FRN(ir) = FRN(ir) * FRM(ir);
  1059                     break;
  1060                 case 3: /* FDIV    FRm, FRn */
  1061                     FRN(ir) = FRN(ir) / FRM(ir);
  1062                     break;
  1063                 case 4: /* FCMP/EQ FRm, FRn */
  1064                     sh4r.t = ( FRN(ir) == FRM(ir) ? 1 : 0 );
  1065                     break;
  1066                 case 5: /* FCMP/GT FRm, FRn */
  1067                     sh4r.t = ( FRN(ir) > FRM(ir) ? 1 : 0 );
  1068                     break;
  1069                 case 6: /* FMOV.S  [Rm+R0], FRn */
  1070                     MEM_FP_READ( RM(ir) + R0, FRNn(ir) );
  1071                     break;
  1072                 case 7: /* FMOV.S  FRm, [Rn+R0] */
  1073                     MEM_FP_WRITE( RN(ir) + R0, FRMn(ir) );
  1074                     break;
  1075                 case 8: /* FMOV.S  [Rm], FRn */
  1076                     MEM_FP_READ( RM(ir), FRNn(ir) );
  1077                     break;
  1078                 case 9: /* FMOV.S  [Rm++], FRn */
  1079                     MEM_FP_READ( RM(ir), FRNn(ir) );
  1080                     RM(ir) += FP_WIDTH;
  1081                     break;
  1082                 case 10:/* FMOV.S  FRm, [Rn] */
  1083                     MEM_FP_WRITE( RN(ir), FRMn(ir) );
  1084                     break;
  1085                 case 11:/* FMOV.S  FRm, [--Rn] */
  1086                     RN(ir) -= FP_WIDTH;
  1087                     MEM_FP_WRITE( RN(ir), FRMn(ir) );
  1088                     break;
  1089                 case 12:/* FMOV    FRm, FRn */
  1090                     if( IS_FPU_DOUBLESIZE() ) {
  1091                         DRN(ir) = DRM(ir);
  1092                     } else {
  1093                         FRN(ir) = FRM(ir);
  1095                     break;
  1096                 case 13:
  1097                     switch( (ir&0x00F0) >> 4 ) {
  1098                         case 0: /* FSTS    FPUL, FRn */
  1099                             FRN(ir) = FPULf;
  1100                             break;
  1101                         case 1: /* FLDS    FRn, FPUL */
  1102                             FPULf = FRN(ir);
  1103                             break;
  1104                         case 2: /* FLOAT   FPUL, FRn */
  1105                             FRN(ir) = (float)FPULi;
  1106                             break;
  1107                         case 3: /* FTRC    FRn, FPUL */
  1108                             FPULi = (uint32_t)FRN(ir);
  1109                             /* FIXME: is this sufficient? */
  1110                             break;
  1111                         case 4: /* FNEG    FRn */
  1112                             FRN(ir) = -FRN(ir);
  1113                             break;
  1114                         case 5: /* FABS    FRn */
  1115                             FRN(ir) = fabsf(FRN(ir));
  1116                             break;
  1117                         case 6: /* FSQRT   FRn */
  1118                             FRN(ir) = sqrtf(FRN(ir));
  1119                             break;
  1120                         case 7: /* FSRRA FRn */
  1121                             FRN(ir) = 1.0/sqrtf(FRN(ir));
  1122                             break;
  1123                         case 8: /* FLDI0   FRn */
  1124                             FRN(ir) = 0.0;
  1125                             break;
  1126                         case 9: /* FLDI1   FRn */
  1127                             FRN(ir) = 1.0;
  1128                             break;
  1129                         case 10: /* FCNVSD FPUL, DRn */
  1130                             if( IS_FPU_DOUBLEPREC() )
  1131                                 DRN(ir) = (double)FPULf;
  1132                             else UNDEF(ir);
  1133                             break;
  1134                         case 11: /* FCNVDS DRn, FPUL */
  1135                             if( IS_FPU_DOUBLEPREC() ) 
  1136                                 FPULf = (float)DRN(ir);
  1137                             else UNDEF(ir);
  1138                             break;
  1139                         case 14:/* FIPR    FVm, FVn */
  1140                             /* FIXME: This is not going to be entirely accurate
  1141                              * as the SH4 instruction is less precise. Also
  1142                              * need to check for 0s and infinities.
  1143                              */
  1145                             float *fr_bank = FR;
  1146                             int tmp2 = FVN(ir);
  1147                             tmp = FVM(ir);
  1148                             fr_bank[tmp2+3] = fr_bank[tmp]*fr_bank[tmp2] +
  1149                                 fr_bank[tmp+1]*fr_bank[tmp2+1] +
  1150                                 fr_bank[tmp+2]*fr_bank[tmp2+2] +
  1151                                 fr_bank[tmp+3]*fr_bank[tmp2+3];
  1152                             break;
  1154                         case 15:
  1155                             if( (ir&0x0300) == 0x0100 ) { /* FTRV    XMTRX,FVn */
  1156                                 float *fvout = FR+FVN(ir);
  1157                                 float *xm = XF;
  1158                                 float fv[4] = { fvout[0], fvout[1], fvout[2], fvout[3] };
  1159                                 fvout[0] = xm[0] * fv[0] + xm[4]*fv[1] +
  1160                                     xm[8]*fv[2] + xm[12]*fv[3];
  1161                                 fvout[1] = xm[1] * fv[0] + xm[5]*fv[1] +
  1162                                     xm[9]*fv[2] + xm[13]*fv[3];
  1163                                 fvout[2] = xm[2] * fv[0] + xm[6]*fv[1] +
  1164                                     xm[10]*fv[2] + xm[14]*fv[3];
  1165                                 fvout[3] = xm[3] * fv[0] + xm[7]*fv[1] +
  1166                                     xm[11]*fv[2] + xm[15]*fv[3];
  1167                                 break;
  1169                             else if( (ir&0x0100) == 0 ) { /* FSCA    FPUL, DRn */
  1170                                 float angle = (((float)(short)(FPULi>>16)) +
  1171                                                ((float)(FPULi&16)/65536.0)) *
  1172                                     2 * M_PI;
  1173                                 int reg = FRNn(ir);
  1174                                 FR[reg] = sinf(angle);
  1175                                 FR[reg+1] = cosf(angle);
  1176                                 break;
  1178                             else if( ir == 0xFBFD ) {
  1179                                 /* FRCHG   */
  1180                                 sh4r.fpscr ^= FPSCR_FR;
  1181                                 break;
  1183                             else if( ir == 0xF3FD ) {
  1184                                 /* FSCHG   */
  1185                                 sh4r.fpscr ^= FPSCR_SZ;
  1186                                 break;
  1188                         default: UNDEF(ir);
  1190                     break;
  1191                 case 14:/* FMAC    FR0, FRm, FRn */
  1192                     FRN(ir) += FRM(ir)*FR0;
  1193                     break;
  1194                 default: UNDEF(ir);
  1196             break;
  1198     sh4r.pc = sh4r.new_pc;
  1199     sh4r.new_pc += 2;
  1200     sh4r.in_delay_slot = 0;
.