libmach: fix break point instruction for little endian MIPS (from sources)

fix break point instruction for little endian MIPS in
libmach. (patch /n/sources/patch/libmach-mipsle-bpinst)
This commit is contained in:
cinap_lenrek 2014-07-13 01:24:55 +02:00
parent cc001c31a7
commit e53511ef4c

View file

@ -37,7 +37,7 @@ Machdata mipsmach =
Machdata mipsmachle =
{
{0, 0, 0, 0xD}, /* break point */
{0xD, 0, 0, 0}, /* break point */
4, /* break point size */
leswab, /* short to local byte order */
@ -60,7 +60,7 @@ Machdata mipsmachle =
*/
Machdata mipsmach2le =
{
{0, 0, 0, 0xD}, /* break point */
{0xD, 0, 0, 0}, /* break point */
4, /* break point size */
leswab, /* short to local byte order */