Added support for the VU insn D (debug) & T (trace) bits.
authorJames Lemke <jlemke@cygnus>
Thu, 4 Jun 1998 20:50:55 +0000 (20:50 +0000)
committerJames Lemke <jlemke@cygnus>
Thu, 4 Jun 1998 20:50:55 +0000 (20:50 +0000)
sim/mips/interp.c

index e0ec3e3c27c08e0183db947696f38f78238bcf33..07b7e6b013c9035da210a051a43ea60212e82f06 100644 (file)
@@ -3545,7 +3545,10 @@ decode_coproc (SIM_DESC sd,
                unsigned_4 data;
                /* enum + int calculation, argh! */
                id = VU_REG_MST + 16 * id;
-               read_vu_misc_reg(&(vu0_device.regs), id, & data);
+               if (id >= VU_REG_CMSAR0)
+                 read_vu_special_reg(&vu0_device, id, & data);
+               else
+                 read_vu_misc_reg(&(vu0_device.regs), id, & data);
                GPR[rt] = EXTEND32(T2H_4(data));
              }
          }
@@ -3584,8 +3587,11 @@ decode_coproc (SIM_DESC sd,
              {
                unsigned_4 data = H2T_4(GPR[rt]);
                /* enum + int calculation, argh! */
-               id = VU_REG_MST + 16 * id;
-               write_vu_misc_reg(&(vu0_device.regs), id, & data);
+               id = VU_REG_VI + 16 * id;
+               if (id >= VU_REG_CMSAR0)
+                 write_vu_special_reg(&vu0_device, id, & data);
+               else
+                 write_vu_misc_reg(&(vu0_device.regs), id, & data);
              }
          }
        else if(i_10_0 == 0x3bf) /* VWAITQ */
This page took 0.027204 seconds and 4 git commands to generate.