mirror of https://github.com/xemu-project/xemu.git
SH4: Init TCG variables
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5095 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f10dc08e00
commit
6858571c5a
|
@ -56,7 +56,7 @@ enum {
|
||||||
BS_EXCP = 3, /* We reached an exception condition */
|
BS_EXCP = 3, /* We reached an exception condition */
|
||||||
};
|
};
|
||||||
|
|
||||||
static TCGv cpu_env;
|
static TCGv cpu_env, cpu_T[2];
|
||||||
|
|
||||||
#include "gen-icount.h"
|
#include "gen-icount.h"
|
||||||
|
|
||||||
|
@ -66,6 +66,8 @@ static void sh4_translate_init(void)
|
||||||
if (done_init)
|
if (done_init)
|
||||||
return;
|
return;
|
||||||
cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env");
|
cpu_env = tcg_global_reg_new(TCG_TYPE_PTR, TCG_AREG0, "env");
|
||||||
|
cpu_T[0] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG1, "T0");
|
||||||
|
cpu_T[1] = tcg_global_reg_new(TCG_TYPE_TL, TCG_AREG2, "T1");
|
||||||
done_init = 1;
|
done_init = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue