diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-13 11:30:10 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-13 11:30:10 +0000 |
commit | 9ceb2a77ad248ca9a8b6f7ad0b6532119335b50f (patch) | |
tree | bdf28129194973604e713f781587aa9f5b69a65e /target-ppc | |
parent | abb8a13918ecc1e8160aa78582de9d5224ea70df (diff) | |
download | qemu-9ceb2a77ad248ca9a8b6f7ad0b6532119335b50f.tar.gz qemu-9ceb2a77ad248ca9a8b6f7ad0b6532119335b50f.tar.bz2 qemu-9ceb2a77ad248ca9a8b6f7ad0b6532119335b50f.zip |
Fix encoding of efsctsiz (powerpc spe), by Tristan Gingold.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4999 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/translate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-ppc/translate.c b/target-ppc/translate.c index 146ba3af16..df73ed9716 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -5996,7 +5996,8 @@ GEN_SPE(efscfui, efscfsi, 0x08, 0x0B, 0x00180000, PPC_SPEFPU); // GEN_SPE(efscfuf, efscfsf, 0x09, 0x0B, 0x00180000, PPC_SPEFPU); // GEN_SPE(efsctui, efsctsi, 0x0A, 0x0B, 0x00180000, PPC_SPEFPU); // GEN_SPE(efsctuf, efsctsf, 0x0B, 0x0B, 0x00180000, PPC_SPEFPU); // -GEN_SPE(efsctuiz, efsctsiz, 0x0C, 0x0B, 0x00180000, PPC_SPEFPU); // +GEN_SPE(efsctuiz, speundef, 0x0C, 0x0B, 0x00180000, PPC_SPEFPU); // +GEN_SPE(efsctsiz, speundef, 0x0D, 0x0B, 0x00180000, PPC_SPEFPU); // GEN_SPE(efststgt, efststlt, 0x0E, 0x0B, 0x00600000, PPC_SPEFPU); // GEN_SPE(efststeq, speundef, 0x0F, 0x0B, 0x00600000, PPC_SPEFPU); // |