mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-01-27 03:54:29 +00:00
* coff-h8300.c (h8300_reloc16_extra_cases): Add bsr:16 -> bsr:8 to
the R_PCRWORD_B case.
This commit is contained in:
parent
62a4b482f9
commit
4259e8b62b
@ -1,3 +1,8 @@
|
|||||||
|
2000-04-03 Kazu Hirata <kazu@hxi.com>
|
||||||
|
|
||||||
|
* coff-h8300.c (h8300_reloc16_extra_cases): Add bsr:16 -> bsr:8 to
|
||||||
|
the R_PCRWORD_B case.
|
||||||
|
|
||||||
2000-03-31 Thomas de Lellis <tdel@wrs.com>
|
2000-03-31 Thomas de Lellis <tdel@wrs.com>
|
||||||
|
|
||||||
* srec.c : Set CHUNK size to 16 bytes to prevent download failures
|
* srec.c : Set CHUNK size to 16 bytes to prevent download failures
|
||||||
|
@ -901,6 +901,10 @@ h8300_reloc16_extra_cases (abfd, link_info, link_order, reloc, data, src_ptr,
|
|||||||
/* Write it. */
|
/* Write it. */
|
||||||
bfd_put_8 (abfd, tmp, data + dst_address - 2);
|
bfd_put_8 (abfd, tmp, data + dst_address - 2);
|
||||||
break;
|
break;
|
||||||
|
case 0x5c:
|
||||||
|
/* bsr:16 -> bsr:8 */
|
||||||
|
bfd_put_8 (abfd, 0x55, data + dst_address - 2);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user