2003-10-10 09:13:11 +02:00
|
|
|
/* Remote target glue for the Renesas SH-3 ROM monitor.
|
2001-03-06 09:22:02 +01:00
|
|
|
Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001
|
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "gdbcore.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "monitor.h"
|
|
|
|
#include "serial.h"
|
|
|
|
#include "srec.h"
|
2000-06-07 06:38:02 +02:00
|
|
|
#include "arch-utils.h"
|
2001-03-01 02:39:22 +01:00
|
|
|
#include "regcache.h"
|
2002-09-27 21:33:48 +02:00
|
|
|
#include "gdb_string.h"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2002-05-17 08:55:49 +02:00
|
|
|
#include "sh-tdep.h"
|
|
|
|
|
2001-07-11 19:52:32 +02:00
|
|
|
static struct serial *parallel;
|
1999-04-16 03:35:26 +02:00
|
|
|
static int parallel_in_use;
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
static void sh3_open (char *args, int from_tty);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
sh3_supply_register (char *regname, int regnamelen, char *val, int vallen)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
int numregs;
|
|
|
|
int regno;
|
|
|
|
|
|
|
|
numregs = 1;
|
|
|
|
regno = -1;
|
|
|
|
|
|
|
|
if (regnamelen == 2)
|
|
|
|
{
|
|
|
|
switch (regname[0])
|
|
|
|
{
|
|
|
|
case 'S':
|
|
|
|
if (regname[1] == 'R')
|
|
|
|
regno = SR_REGNUM;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
if (regname[1] == 'C')
|
|
|
|
regno = PC_REGNUM;
|
|
|
|
else if (regname[1] == 'R')
|
|
|
|
regno = PR_REGNUM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (regnamelen == 3)
|
|
|
|
{
|
|
|
|
switch (regname[0])
|
|
|
|
{
|
|
|
|
case 'G':
|
|
|
|
case 'V':
|
|
|
|
if (regname[1] == 'B' && regname[2] == 'R')
|
1999-04-26 20:34:20 +02:00
|
|
|
{
|
|
|
|
if (regname[0] == 'G')
|
|
|
|
regno = VBR_REGNUM;
|
|
|
|
else
|
|
|
|
regno = GBR_REGNUM;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
if (regname[1] == 'S' && regname[2] == 'R')
|
2003-09-16 17:56:03 +02:00
|
|
|
regno = SSR_REGNUM;
|
1999-04-16 03:35:26 +02:00
|
|
|
else if (regname[1] == 'P' && regname[2] == 'C')
|
2003-09-16 17:56:03 +02:00
|
|
|
regno = SPC_REGNUM;
|
1999-04-16 03:35:26 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (regnamelen == 4)
|
|
|
|
{
|
|
|
|
switch (regname[0])
|
|
|
|
{
|
|
|
|
case 'M':
|
|
|
|
if (regname[1] == 'A' && regname[2] == 'C')
|
1999-04-26 20:34:20 +02:00
|
|
|
{
|
|
|
|
if (regname[3] == 'H')
|
|
|
|
regno = MACH_REGNUM;
|
|
|
|
else if (regname[3] == 'L')
|
|
|
|
regno = MACL_REGNUM;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
if (regname[1] == '0' && regname[2] == '-' && regname[3] == '7')
|
|
|
|
{
|
|
|
|
regno = R0_REGNUM;
|
|
|
|
numregs = 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (regnamelen == 5)
|
|
|
|
{
|
|
|
|
if (regname[1] == '8' && regname[2] == '-' && regname[3] == '1'
|
1999-07-07 22:19:36 +02:00
|
|
|
&& regname[4] == '5')
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
regno = R0_REGNUM + 8;
|
|
|
|
numregs = 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (regnamelen == 17)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
if (regno >= 0)
|
|
|
|
while (numregs-- > 0)
|
|
|
|
val = monitor_supply_register (regno++, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-07-11 19:52:32 +02:00
|
|
|
sh3_load (struct serial *desc, char *file, int hashmark)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
if (parallel_in_use)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
monitor_printf ("pl;s\r");
|
1999-04-16 03:35:26 +02:00
|
|
|
load_srec (parallel, file, 0, 80, SREC_ALL, hashmark, NULL);
|
|
|
|
monitor_expect_prompt (NULL, 0);
|
|
|
|
}
|
1999-07-07 22:19:36 +02:00
|
|
|
else
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
monitor_printf ("il;s:x\r");
|
1999-07-07 22:19:36 +02:00
|
|
|
monitor_expect ("\005", NULL, 0); /* Look for ENQ */
|
2001-07-15 22:34:14 +02:00
|
|
|
serial_write (desc, "\006", 1); /* Send ACK */
|
1999-07-07 22:19:36 +02:00
|
|
|
monitor_expect ("LO x\r", NULL, 0); /* Look for filename */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
load_srec (desc, file, 0, 80, SREC_ALL, hashmark, NULL);
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
monitor_expect ("\005", NULL, 0); /* Look for ENQ */
|
2001-07-15 22:34:14 +02:00
|
|
|
serial_write (desc, "\006", 1); /* Send ACK */
|
1999-04-16 03:35:26 +02:00
|
|
|
monitor_expect_prompt (NULL, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This array of registers need to match the indexes used by GDB.
|
|
|
|
This exists because the various ROM monitors use different strings
|
|
|
|
than does GDB, and don't necessarily support all the registers
|
|
|
|
either. So, typing "info reg sp" becomes a "r30". */
|
|
|
|
|
2000-07-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
Multiarch the sh target.
* sh-tdep.c:
(sh_generic_reg_names, sh_reg_names,sh3_reg_names, sh3e_reg_names,
sh_dsp_reg_names, sh3_dsp_reg_names, sh_processor_type_table):
Remove.
(XMALLOC): Define.
(struct frame_extra_info): Define.
(sh_register_raw_size, sh_register_virtual_size,
sh_register_virtual_type, sh_register_byte, sh_breakpoint_from_pc,
sh_frame_saved_pc, sh_skip_prologue,
sh_nofp_frame_init_saved_regs, sh_fp_frame_init_saved_regs,
sh_extract_struct_value_address, sh_use_struct_convention,
sh_store_struct_return, sh_push_arguments, sh_push_return_address,
sh_saved_pc_after_call, sh_generic_register_name,
sh_sh_register_name, sh_sh3_register_name, sh_sh3e_register_name,
sh_sh_dsp_register_name, sh_sh3_dsp_register_name,
sh_frame_args_address, sh_frame_locals_address,
sh_coerce_float_to_double, sh_default_store_return_value,
sh3e_sh4_store_return_value, sh_generic_show_regs,
sh3_show_regs,sh3e_show_regs, sh3_dsp_show_regs, sh4_show_regs,
sh_dsp_show_regs, sh_register_byte, sh_register_raw_size,
sh_register_virtual_size, sh_sh3e_register_virtual_type,
sh_default_register_virtual_type, sh_gdbarch_init): New functions.
(sh_target_architecture_hook, sh_frame_find_saved_regs,
sh_show_regs): Delete functions.
(sh_frame_chain, sh_find_callers_reg, sh_init_extra_frame_info,
sh_pop_frame, sh_extract_return_value): Update
* config/sh/tm-sh.h (GDB_MULTI_ARCH): Define to 1.
(struct gdbarch_tdep): Define.
Remove all unnecessary defines.
* remote-e7000.c ({PR,GBR,SR,MACL,VBR,MACH}_REGNUM): Define to -1,
for h8300 case.
(want_sh,want_nopc_sh,want_nopc_sh3): Make nomenclature
consistent.
(e7000_fetch_registers): Remove ifdef GDB_TARGET_IS_SH, use
runtime check instead.
(e7000_wait): Ditto.
* sh3-rom.c (sh3_supply_register): Use gdbarch_tdep to get the SSR
and SPC register numbers.
(sh3_regnames, sh3e_regnames): Don't specify a size.
* config/h8300/tm-h8300.h: Add comment.
2000-07-19 16:11:42 +02:00
|
|
|
static char *sh3_regnames[] =
|
1999-07-07 22:19:36 +02:00
|
|
|
{
|
|
|
|
"R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7",
|
|
|
|
"R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15",
|
|
|
|
"PC", "PR", "GBR", "VBR", "MACH", "MACL", "SR",
|
1999-04-16 03:35:26 +02:00
|
|
|
NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
"SSR", "SPC",
|
|
|
|
"R0_BANK0", "R1_BANK0", "R2_BANK0", "R3_BANK0",
|
|
|
|
"R4_BANK0", "R5_BANK0", "R6_BANK0", "R7_BANK0",
|
|
|
|
"R0_BANK1", "R1_BANK1", "R2_BANK1", "R3_BANK1",
|
|
|
|
"R4_BANK1", "R5_BANK1", "R6_BANK1", "R7_BANK1"
|
|
|
|
};
|
|
|
|
|
2000-07-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
Multiarch the sh target.
* sh-tdep.c:
(sh_generic_reg_names, sh_reg_names,sh3_reg_names, sh3e_reg_names,
sh_dsp_reg_names, sh3_dsp_reg_names, sh_processor_type_table):
Remove.
(XMALLOC): Define.
(struct frame_extra_info): Define.
(sh_register_raw_size, sh_register_virtual_size,
sh_register_virtual_type, sh_register_byte, sh_breakpoint_from_pc,
sh_frame_saved_pc, sh_skip_prologue,
sh_nofp_frame_init_saved_regs, sh_fp_frame_init_saved_regs,
sh_extract_struct_value_address, sh_use_struct_convention,
sh_store_struct_return, sh_push_arguments, sh_push_return_address,
sh_saved_pc_after_call, sh_generic_register_name,
sh_sh_register_name, sh_sh3_register_name, sh_sh3e_register_name,
sh_sh_dsp_register_name, sh_sh3_dsp_register_name,
sh_frame_args_address, sh_frame_locals_address,
sh_coerce_float_to_double, sh_default_store_return_value,
sh3e_sh4_store_return_value, sh_generic_show_regs,
sh3_show_regs,sh3e_show_regs, sh3_dsp_show_regs, sh4_show_regs,
sh_dsp_show_regs, sh_register_byte, sh_register_raw_size,
sh_register_virtual_size, sh_sh3e_register_virtual_type,
sh_default_register_virtual_type, sh_gdbarch_init): New functions.
(sh_target_architecture_hook, sh_frame_find_saved_regs,
sh_show_regs): Delete functions.
(sh_frame_chain, sh_find_callers_reg, sh_init_extra_frame_info,
sh_pop_frame, sh_extract_return_value): Update
* config/sh/tm-sh.h (GDB_MULTI_ARCH): Define to 1.
(struct gdbarch_tdep): Define.
Remove all unnecessary defines.
* remote-e7000.c ({PR,GBR,SR,MACL,VBR,MACH}_REGNUM): Define to -1,
for h8300 case.
(want_sh,want_nopc_sh,want_nopc_sh3): Make nomenclature
consistent.
(e7000_fetch_registers): Remove ifdef GDB_TARGET_IS_SH, use
runtime check instead.
(e7000_wait): Ditto.
* sh3-rom.c (sh3_supply_register): Use gdbarch_tdep to get the SSR
and SPC register numbers.
(sh3_regnames, sh3e_regnames): Don't specify a size.
* config/h8300/tm-h8300.h: Add comment.
2000-07-19 16:11:42 +02:00
|
|
|
static char *sh3e_regnames[] =
|
1999-07-07 22:19:36 +02:00
|
|
|
{
|
|
|
|
"R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7",
|
|
|
|
"R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15",
|
|
|
|
"PC", "PR", "GBR", "VBR", "MACH", "MACL", "SR",
|
1999-04-16 03:35:26 +02:00
|
|
|
"FPUL", "FPSCR",
|
|
|
|
"FR0", "FR1", "FR2", "FR3", "FR4", "FR5", "FR6", "FR7",
|
|
|
|
"FR8", "FR9", "FR10", "FR11", "FR12", "FR13", "FR14", "FR15",
|
1999-07-07 22:19:36 +02:00
|
|
|
"SSR", "SPC",
|
1999-04-16 03:35:26 +02:00
|
|
|
"R0_BANK0", "R1_BANK0", "R2_BANK0", "R3_BANK0",
|
|
|
|
"R4_BANK0", "R5_BANK0", "R6_BANK0", "R7_BANK0",
|
|
|
|
"R0_BANK1", "R1_BANK1", "R2_BANK1", "R3_BANK1",
|
|
|
|
"R4_BANK1", "R5_BANK1", "R6_BANK1", "R7_BANK1"
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Define the monitor command strings. Since these are passed directly
|
|
|
|
through to a printf style function, we may include formatting
|
|
|
|
strings. We also need a CR or LF on the end. */
|
|
|
|
|
|
|
|
static struct target_ops sh3_ops, sh3e_ops;
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
static char *sh3_inits[] =
|
|
|
|
{"\003", NULL}; /* Exits sub-command mode & download cmds */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
static struct monitor_ops sh3_cmds;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
static void
|
|
|
|
init_sh3_cmds (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
sh3_cmds.flags = MO_CLR_BREAK_USES_ADDR | MO_GETMEM_READ_SINGLE; /* flags */
|
|
|
|
sh3_cmds.init = sh3_inits; /* monitor init string */
|
|
|
|
sh3_cmds.cont = "g\r"; /* continue command */
|
|
|
|
sh3_cmds.step = "s\r"; /* single step */
|
|
|
|
sh3_cmds.stop = "\003"; /* Interrupt program */
|
|
|
|
sh3_cmds.set_break = "b %x\r"; /* set a breakpoint */
|
|
|
|
sh3_cmds.clr_break = "b -%x\r"; /* clear a breakpoint */
|
|
|
|
sh3_cmds.clr_all_break = "b -\r"; /* clear all breakpoints */
|
|
|
|
sh3_cmds.fill = "f %x @%x %x\r"; /* fill (start len val) */
|
|
|
|
sh3_cmds.setmem.cmdb = "m %x %x\r"; /* setmem.cmdb (addr, value) */
|
|
|
|
sh3_cmds.setmem.cmdw = "m %x %x;w\r"; /* setmem.cmdw (addr, value) */
|
|
|
|
sh3_cmds.setmem.cmdl = "m %x %x;l\r"; /* setmem.cmdl (addr, value) */
|
|
|
|
sh3_cmds.setmem.cmdll = NULL; /* setmem.cmdll (addr, value) */
|
|
|
|
sh3_cmds.setmem.resp_delim = NULL; /* setreg.resp_delim */
|
|
|
|
sh3_cmds.setmem.term = NULL; /* setreg.term */
|
|
|
|
sh3_cmds.setmem.term_cmd = NULL; /* setreg.term_cmd */
|
|
|
|
sh3_cmds.getmem.cmdb = "m %x\r"; /* getmem.cmdb (addr, len) */
|
|
|
|
sh3_cmds.getmem.cmdw = "m %x;w\r"; /* getmem.cmdw (addr, len) */
|
|
|
|
sh3_cmds.getmem.cmdl = "m %x;l\r"; /* getmem.cmdl (addr, len) */
|
|
|
|
sh3_cmds.getmem.cmdll = NULL; /* getmem.cmdll (addr, len) */
|
|
|
|
sh3_cmds.getmem.resp_delim = "^ [0-9A-F]+ "; /* getmem.resp_delim */
|
|
|
|
sh3_cmds.getmem.term = "? "; /* getmem.term */
|
|
|
|
sh3_cmds.getmem.term_cmd = ".\r"; /* getmem.term_cmd */
|
|
|
|
sh3_cmds.setreg.cmd = ".%s %x\r"; /* setreg.cmd (name, value) */
|
|
|
|
sh3_cmds.setreg.resp_delim = NULL; /* setreg.resp_delim */
|
|
|
|
sh3_cmds.setreg.term = NULL; /* setreg.term */
|
|
|
|
sh3_cmds.setreg.term_cmd = NULL; /* setreg.term_cmd */
|
|
|
|
sh3_cmds.getreg.cmd = ".%s\r"; /* getreg.cmd (name) */
|
|
|
|
sh3_cmds.getreg.resp_delim = "="; /* getreg.resp_delim */
|
|
|
|
sh3_cmds.getreg.term = "? "; /* getreg.term */
|
|
|
|
sh3_cmds.getreg.term_cmd = ".\r"; /* getreg.term_cmd */
|
|
|
|
sh3_cmds.dump_registers = "r\r"; /* dump_registers */
|
|
|
|
sh3_cmds.register_pattern = "\\(\\w+\\)=\\([0-9a-fA-F]+\\( +[0-9a-fA-F]+\\b\\)*\\)";
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 03:31:49 +02:00
|
|
|
sh3_cmds.supply_register = sh3_supply_register;
|
1999-07-07 22:19:36 +02:00
|
|
|
sh3_cmds.load_routine = sh3_load; /* load_routine */
|
|
|
|
sh3_cmds.load = NULL; /* download command */
|
|
|
|
sh3_cmds.loadresp = NULL; /* Load response */
|
|
|
|
sh3_cmds.prompt = "\n:"; /* monitor command prompt */
|
|
|
|
sh3_cmds.line_term = "\r"; /* end-of-line terminator */
|
|
|
|
sh3_cmds.cmd_end = ".\r"; /* optional command terminator */
|
|
|
|
sh3_cmds.target = &sh3_ops; /* target operations */
|
|
|
|
sh3_cmds.stopbits = SERIAL_1_STOPBITS; /* number of stop bits */
|
|
|
|
sh3_cmds.regnames = sh3_regnames; /* registers names */
|
|
|
|
sh3_cmds.magic = MONITOR_OPS_MAGIC; /* magic */
|
|
|
|
} /* init_sh3_cmds */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
/* This monitor structure is identical except for a couple slots, so
|
|
|
|
we will fill it in from the base structure when needed. */
|
|
|
|
|
|
|
|
static struct monitor_ops sh3e_cmds;
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
sh3_open (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
char *serial_port_name = args;
|
|
|
|
char *parallel_port_name = 0;
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
if (args)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-01-31 02:24:03 +01:00
|
|
|
char *cursor = serial_port_name = xstrdup (args);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
while (*cursor && *cursor != ' ')
|
1999-07-07 22:19:36 +02:00
|
|
|
cursor++;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (*cursor)
|
|
|
|
*cursor++ = 0;
|
|
|
|
|
|
|
|
while (*cursor == ' ')
|
|
|
|
cursor++;
|
|
|
|
|
|
|
|
if (*cursor)
|
|
|
|
parallel_port_name = cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
monitor_open (serial_port_name, &sh3_cmds, from_tty);
|
|
|
|
|
|
|
|
if (parallel_port_name)
|
|
|
|
{
|
2001-07-15 22:34:14 +02:00
|
|
|
parallel = serial_open (parallel_port_name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (!parallel)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
perror_with_name (_("Unable to open parallel port."));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
parallel_in_use = 1;
|
|
|
|
}
|
|
|
|
|
2003-08-21 22:43:10 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
/* If we connected successfully, we know the processor is an SH3. */
|
2003-08-21 22:43:10 +02:00
|
|
|
{
|
|
|
|
struct gdbarch_info info;
|
|
|
|
gdbarch_info_init (&info);
|
|
|
|
info.bfd_arch_info = bfd_lookup_arch (bfd_arch_sh, bfd_mach_sh3);
|
|
|
|
if (!gdbarch_update_p (info))
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
error (_("Target is not an SH3"));
|
2003-08-21 22:43:10 +02:00
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
sh3e_open (char *args, int from_tty)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
char *serial_port_name = args;
|
|
|
|
char *parallel_port_name = 0;
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
if (args)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
2001-01-31 02:24:03 +01:00
|
|
|
char *cursor = serial_port_name = xstrdup (args);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
while (*cursor && *cursor != ' ')
|
1999-07-07 22:19:36 +02:00
|
|
|
cursor++;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (*cursor)
|
|
|
|
*cursor++ = 0;
|
|
|
|
|
|
|
|
while (*cursor == ' ')
|
|
|
|
cursor++;
|
|
|
|
|
|
|
|
if (*cursor)
|
|
|
|
parallel_port_name = cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up the SH-3E monitor commands structure. */
|
|
|
|
|
|
|
|
memcpy (&sh3e_cmds, &sh3_cmds, sizeof (struct monitor_ops));
|
|
|
|
|
|
|
|
sh3e_cmds.target = &sh3e_ops;
|
|
|
|
sh3e_cmds.regnames = sh3e_regnames;
|
|
|
|
|
|
|
|
monitor_open (serial_port_name, &sh3e_cmds, from_tty);
|
|
|
|
|
|
|
|
if (parallel_port_name)
|
|
|
|
{
|
2001-07-15 22:34:14 +02:00
|
|
|
parallel = serial_open (parallel_port_name);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
if (!parallel)
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
perror_with_name (_("Unable to open parallel port."));
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
parallel_in_use = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we connected successfully, we know the processor is an SH3E. */
|
2003-08-21 22:43:10 +02:00
|
|
|
{
|
|
|
|
struct gdbarch_info info;
|
|
|
|
gdbarch_info_init (&info);
|
|
|
|
info.bfd_arch_info = bfd_lookup_arch (bfd_arch_sh, bfd_mach_sh3);
|
|
|
|
if (!gdbarch_update_p (info))
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 05:06:14 +01:00
|
|
|
error (_("Target is not an SH3"));
|
2003-08-21 22:43:10 +02:00
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-30 03:48:28 +02:00
|
|
|
sh3_close (int quitting)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
monitor_close (quitting);
|
1999-07-07 22:19:36 +02:00
|
|
|
if (parallel_in_use)
|
|
|
|
{
|
2001-07-15 22:34:14 +02:00
|
|
|
serial_close (parallel);
|
1999-07-07 22:19:36 +02:00
|
|
|
parallel_in_use = 0;
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2003-06-11 15:16:30 +02:00
|
|
|
extern initialize_file_ftype _initialize_sh3_rom; /* -Wmissing-prototypes */
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
_initialize_sh3_rom (void)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
1999-07-07 22:19:36 +02:00
|
|
|
init_sh3_cmds ();
|
1999-04-16 03:35:26 +02:00
|
|
|
init_monitor_ops (&sh3_ops);
|
|
|
|
|
|
|
|
sh3_ops.to_shortname = "sh3";
|
2003-10-10 09:13:11 +02:00
|
|
|
sh3_ops.to_longname = "Renesas SH-3 rom monitor";
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
sh3_ops.to_doc =
|
2001-05-09 19:51:01 +02:00
|
|
|
/* We can download through the parallel port too. */
|
2003-10-10 09:13:11 +02:00
|
|
|
"Debug on a Renesas eval board running the SH-3E rom monitor.\n"
|
2001-05-09 19:51:01 +02:00
|
|
|
"Specify the serial device it is connected to.\n"
|
1999-04-16 03:35:26 +02:00
|
|
|
"If you want to use the parallel port to download to it, specify that\n"
|
2001-05-09 19:51:01 +02:00
|
|
|
"as an additional second argument.";
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
sh3_ops.to_open = sh3_open;
|
|
|
|
sh3_ops.to_close = sh3_close;
|
|
|
|
|
|
|
|
add_target (&sh3_ops);
|
|
|
|
|
|
|
|
/* Setup the SH3e, which has float registers. */
|
|
|
|
|
|
|
|
init_monitor_ops (&sh3e_ops);
|
|
|
|
|
|
|
|
sh3e_ops.to_shortname = "sh3e";
|
2003-10-10 09:13:11 +02:00
|
|
|
sh3e_ops.to_longname = "Renesas SH-3E rom monitor";
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
sh3e_ops.to_doc =
|
2001-05-09 19:51:01 +02:00
|
|
|
/* We can download through the parallel port too. */
|
2003-10-10 09:13:11 +02:00
|
|
|
"Debug on a Renesas eval board running the SH-3E rom monitor.\n"
|
2001-05-09 19:51:01 +02:00
|
|
|
"Specify the serial device it is connected to.\n"
|
1999-04-16 03:35:26 +02:00
|
|
|
"If you want to use the parallel port to download to it, specify that\n"
|
2001-05-09 19:51:01 +02:00
|
|
|
"as an additional second argument.";
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
sh3e_ops.to_open = sh3e_open;
|
|
|
|
sh3e_ops.to_close = sh3_close;
|
|
|
|
|
|
|
|
add_target (&sh3e_ops);
|
|
|
|
}
|