Commit 7d3b9924 authored by Jeffrey Lee's avatar Jeffrey Lee
Browse files

Fix typo in VSRI disassembly

Detail:
  actions/ARMv7_ASIMD - The instruction is VSRI, but the disassembly was stating VRSI. Fix.
Admin:
  Untested
  Issue reported by Fred Graute:
  https://www.riscosopen.org/forum/forums/4/topics/3956


Version 1.91. Tagged as 'Debugger-1_91'
parent be5b800a
......@@ -11,13 +11,13 @@
GBLS Module_HelpVersion
GBLS Module_ComponentName
GBLS Module_ComponentPath
Module_MajorVersion SETS "1.90"
Module_Version SETA 190
Module_MajorVersion SETS "1.91"
Module_Version SETA 191
Module_MinorVersion SETS ""
Module_Date SETS "22 Jul 2015"
Module_ApplicationDate SETS "22-Jul-15"
Module_Date SETS "03 Mar 2016"
Module_ApplicationDate SETS "03-Mar-16"
Module_ComponentName SETS "Debugger"
Module_ComponentPath SETS "castle/RiscOS/Sources/Programmer/Debugger"
Module_FullVersion SETS "1.90"
Module_HelpVersion SETS "1.90 (22 Jul 2015)"
Module_FullVersion SETS "1.91"
Module_HelpVersion SETS "1.91 (03 Mar 2016)"
END
/* (1.90)
/* (1.91)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 1.90
#define Module_MajorVersion_CMHG 1.91
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 22 Jul 2015
#define Module_Date_CMHG 03 Mar 2016
#define Module_MajorVersion "1.90"
#define Module_Version 190
#define Module_MajorVersion "1.91"
#define Module_Version 191
#define Module_MinorVersion ""
#define Module_Date "22 Jul 2015"
#define Module_Date "03 Mar 2016"
#define Module_ApplicationDate "22-Jul-15"
#define Module_ApplicationDate "03-Mar-16"
#define Module_ComponentName "Debugger"
#define Module_ComponentPath "castle/RiscOS/Sources/Programmer/Debugger"
#define Module_FullVersion "1.90"
#define Module_HelpVersion "1.90 (22 Jul 2015)"
#define Module_LibraryVersionInfo "1:90"
#define Module_FullVersion "1.91"
#define Module_HelpVersion "1.91 (03 Mar 2016)"
#define Module_LibraryVersionInfo "1:91"
......@@ -1342,7 +1342,7 @@ VSRI_A1(D:Vd,imm6,L,Q,M:Vm,nonstandard)
esize = 8;
amt = 16-imm6;
}
const char *fmt = (Q?"VRSI%s.%d\tQ%d,Q%d,#%d":"VRSI%s.%d\tD%d,D%d,#%d");
const char *fmt = (Q?"VSRI%s.%d\tQ%d,Q%d,#%d":"VSRI%s.%d\tD%d,D%d,#%d");
sprintf(params->buf,fmt,ASIMDCOND,esize,D_Vd>>Q,M_Vm>>Q,amt);
return;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment