* 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
2 changed files with 9 additions and 0 deletions
|
@ -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>
|
||||
|
||||
* 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. */
|
||||
bfd_put_8 (abfd, tmp, data + dst_address - 2);
|
||||
break;
|
||||
case 0x5c:
|
||||
/* bsr:16 -> bsr:8 */
|
||||
bfd_put_8 (abfd, 0x55, data + dst_address - 2);
|
||||
break;
|
||||
|
||||
default:
|
||||
abort ();
|
||||
|
|
Loading…
Reference in a new issue