From: Frank Ch. Eigler Date: Mon, 13 Apr 1998 20:31:29 +0000 (+0000) Subject: * Fixed a one-character typo in COP2 instruction synthesis. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=96a4eb30daa36f9de2c07eb0383a194632561718;p=binutils-gdb.git * Fixed a one-character typo in COP2 instruction synthesis. [ChangeLog] Mon Apr 13 16:28:52 1998 Frank Ch. Eigler * interp.c (decode_coproc): Add proper 1000000 bit-string at top of VU lower instruction. --- diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index ab70c7e5b89..499e2b48b5a 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,10 @@ +start-sanitize-sky + Mon Apr 13 16:28:52 1998 Frank Ch. Eigler + + * interp.c (decode_coproc): Add proper 1000000 bit-string at top + of VU lower instruction. + +end-sanitize-sky start-sanitize-sky Thu Apr 9 16:38:23 1998 Frank Ch. Eigler diff --git a/sim/mips/interp.c b/sim/mips/interp.c index 12da45dabbe..a8788d73939 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 */