~ubuntu-bugs-auftrags-killer/qemu/proper-error-characters

« back to all changes in this revision

Viewing changes to target-sh4/op.c

  • Committer: bellard
  • Date: 2008-02-01 10:50:11 UTC
  • Revision ID: git-v1:57fec1fee94aa9f7d2519e8c354f100fc36bc9fa
use the TCG code generator


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3944 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
    RETURN();
162
162
}
163
163
 
164
 
void OPPROTO op_exit_tb(void)
165
 
{
166
 
    EXIT_TB();
167
 
    RETURN();
168
 
}
169
 
 
170
164
void OPPROTO op_addl_imm_T0(void)
171
165
{
172
166
    T0 += PARAM1;
947
941
    RETURN();
948
942
}
949
943
 
950
 
void OPPROTO op_goto_tb0(void)
951
 
{
952
 
    GOTO_TB(op_goto_tb0, PARAM1, 0);
953
 
    RETURN();
954
 
}
955
 
 
956
 
void OPPROTO op_goto_tb1(void)
957
 
{
958
 
    GOTO_TB(op_goto_tb1, PARAM1, 1);
959
 
    RETURN();
960
 
}
961
 
 
962
944
void OPPROTO op_movl_imm_PC(void)
963
945
{
964
946
    env->pc = PARAM1;