mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
Next attempt to get the lui sign extension right.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2727 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
7bc45061ee
commit
d6929309b6
2 changed files with 2 additions and 3 deletions
|
@ -907,8 +907,7 @@ static void gen_arith_imm (DisasContext *ctx, uint32_t opc, int rt,
|
|||
GEN_LOAD_IMM_TN(T1, uimm);
|
||||
break;
|
||||
case OPC_LUI:
|
||||
uimm = (int32_t)(imm << 16);
|
||||
GEN_LOAD_IMM_TN(T0, uimm);
|
||||
GEN_LOAD_IMM_TN(T0, uimm << 16);
|
||||
break;
|
||||
case OPC_SLL:
|
||||
case OPC_SRA:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue