/[qemu]/qemu/target-mips/op_helper.c
ViewVC logotype

Diff of /qemu/target-mips/op_helper.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.6 by bellard, Mon Jul 4 22:17:33 2005 UTC revision 1.7 by bellard, Sat Nov 26 18:47:20 2005 UTC
# Line 114  void do_msubu (void) Line 114  void do_msubu (void)
114  }  }
115  #endif  #endif
116    
117    #if defined(CONFIG_USER_ONLY)
118    void do_mfc0 (int reg, int sel)
119    {
120        cpu_abort(env, "mfc0 reg=%d sel=%d\n", reg, sel);
121    }
122    void do_mtc0 (int reg, int sel)
123    {
124        cpu_abort(env, "mtc0 reg=%d sel=%d\n", reg, sel);
125    }
126    
127    void do_tlbwi (void)
128    {
129        cpu_abort(env, "tlbwi\n");
130    }
131    
132    void do_tlbwr (void)
133    {
134        cpu_abort(env, "tlbwr\n");
135    }
136    
137    void do_tlbp (void)
138    {
139        cpu_abort(env, "tlbp\n");
140    }
141    
142    void do_tlbr (void)
143    {
144        cpu_abort(env, "tlbr\n");
145    }
146    #else
147    
148  /* CP0 helpers */  /* CP0 helpers */
149  void do_mfc0 (int reg, int sel)  void do_mfc0 (int reg, int sel)
150  {  {
# Line 580  void do_tlbr (void) Line 611  void do_tlbr (void)
611  }  }
612  #endif  #endif
613    
614    #endif /* !CONFIG_USER_ONLY */
615    
616  void op_dump_ldst (const unsigned char *func)  void op_dump_ldst (const unsigned char *func)
617  {  {
618      if (loglevel)      if (loglevel)

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26