diff options
author | Frank Ch. Eigler <fche@redhat.com> | 1998-04-13 20:31:29 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@redhat.com> | 1998-04-13 20:31:29 +0000 |
commit | 96a4eb30daa36f9de2c07eb0383a194632561718 (patch) | |
tree | ac3e9f57950ceffe5323f846383b322bdb436262 /sim/mips/interp.c | |
parent | dde0a234f583df69ec66449e3e2ad926740703b6 (diff) | |
download | gdb-96a4eb30daa36f9de2c07eb0383a194632561718.zip gdb-96a4eb30daa36f9de2c07eb0383a194632561718.tar.gz gdb-96a4eb30daa36f9de2c07eb0383a194632561718.tar.bz2 |
* Fixed a one-character typo in COP2 instruction synthesis.
[ChangeLog]
Mon Apr 13 16:28:52 1998 Frank Ch. Eigler <fche@cygnus.com>
* interp.c (decode_coproc): Add proper 1000000 bit-string at top
of VU lower instruction.
Diffstat (limited to 'sim/mips/interp.c')
-rw-r--r-- | sim/mips/interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/mips/interp.c b/sim/mips/interp.c index 12da45d..a8788d7 100644 --- a/sim/mips/interp.c +++ b/sim/mips/interp.c @@ -3419,7 +3419,7 @@ decode_coproc (SIM_DESC sd, unsigned_4 vu_upper, vu_lower; vu_upper = 0x000002ff; /* NOP/NOP */ vu_lower = - 0x10000000 | /* bits 31 .. 25 */ + 0x80000000 | /* bits 31 .. 25 */ (instruction & 0x01ffffff); /* bits 24 .. 0 */ /* POLICY: never busy in macro mode */ |