diff options
author | Geoffrey Noer <noer@cygnus> | 1997-08-07 20:19:26 +0000 |
---|---|---|
committer | Geoffrey Noer <noer@cygnus> | 1997-08-07 20:19:26 +0000 |
commit | 706eff3f9df3cb29608b7ba465b15b3dbbe0b964 (patch) | |
tree | 1f469c24b8670b4d4460d8c2bc347edfe823b625 /gdb/ppc-bdm.c | |
parent | 48a3d5e5e887693dc51b751b937f393dedffaf08 (diff) | |
download | gdb-706eff3f9df3cb29608b7ba465b15b3dbbe0b964.zip gdb-706eff3f9df3cb29608b7ba465b15b3dbbe0b964.tar.gz gdb-706eff3f9df3cb29608b7ba465b15b3dbbe0b964.tar.bz2 |
Thu Aug 7 13:09:17 1997 Geoffrey Noer <noer@cygnus.com>
Nomenclature change. BDM is a specific type of OCD
(On chip debugging). Wiggler is the parallel port box controlled
by Wigglers.dll. The faster target box from Macraigor Systems
is not a wiggler.
* ocd.c:
* ocd.h:
* ppc-bdm.c:
* ser-ocd.c:
Replace all instances of "wiggler_" with "ocd_" and change most other
instances of "wiggler" to "ocd" or "ocd device" depending on context.
* config/m68k/monitor.mt: remove remote-wiggler.o from TDEPFILES
until OCD with that target is supported again.
Diffstat (limited to 'gdb/ppc-bdm.c')
-rw-r--r-- | gdb/ppc-bdm.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gdb/ppc-bdm.c b/gdb/ppc-bdm.c index 6181298..38878d0 100644 --- a/gdb/ppc-bdm.c +++ b/gdb/ppc-bdm.c @@ -55,7 +55,7 @@ bdm_ppc_open (name, from_tty) char *name; int from_tty; { - wiggler_open (name, from_tty, WIGGLER_TARGET_MOTO_PPC, &bdm_ppc_ops); + ocd_open (name, from_tty, OCD_TARGET_MOTO_PPC, &bdm_ppc_ops); } /* Wait until the remote machine stops, then return, @@ -72,7 +72,7 @@ bdm_ppc_wait (pid, target_status) target_status->kind = TARGET_WAITKIND_STOPPED; - stop_reason = wiggler_wait (); + stop_reason = ocd_wait (); if (stop_reason) { @@ -85,8 +85,8 @@ bdm_ppc_wait (pid, target_status) { unsigned long ecr, der; - ecr = wiggler_read_bdm_register (148); /* Read the exception cause register */ - der = wiggler_read_bdm_register (149); /* Read the debug enables register */ + ecr = ocd_read_bdm_register (148); /* Read the exception cause register */ + der = ocd_read_bdm_register (149); /* Read the debug enables register */ fprintf_unfiltered (gdb_stdout, "ecr = 0x%x, der = 0x%x\n", ecr, der); } @@ -146,7 +146,7 @@ bdm_ppc_fetch_registers (regno) return; /* Unsupported register */ } - regs = wiggler_read_bdm_registers (first_bdm_regno, last_bdm_regno, ®len); + regs = ocd_read_bdm_registers (first_bdm_regno, last_bdm_regno, ®len); for (i = first_regno; i <= last_regno; i++) { @@ -204,27 +204,27 @@ bdm_ppc_store_registers (regno) bdm_regno = bdm_regmap [i]; - wiggler_write_bdm_registers (bdm_regno, registers + REGISTER_BYTE (i), 4); + ocd_write_bdm_registers (bdm_regno, registers + REGISTER_BYTE (i), 4); } } /* Define the target subroutine names */ struct target_ops bdm_ppc_ops = { - "wiggler", /* to_shortname */ + "ocd", /* to_shortname */ "", /* to_longname */ "", /* to_doc */ bdm_ppc_open, /* to_open */ - wiggler_close, /* to_close */ + ocd_close, /* to_close */ NULL, /* to_attach */ - wiggler_detach, /* to_detach */ - wiggler_resume, /* to_resume */ + ocd_detach, /* to_detach */ + ocd_resume, /* to_resume */ bdm_ppc_wait, /* to_wait */ bdm_ppc_fetch_registers, /* to_fetch_registers */ bdm_ppc_store_registers, /* to_store_registers */ - wiggler_prepare_to_store, /* to_prepare_to_store */ - wiggler_xfer_memory, /* to_xfer_memory */ - wiggler_files_info, /* to_files_info */ + ocd_prepare_to_store, /* to_prepare_to_store */ + ocd_xfer_memory, /* to_xfer_memory */ + ocd_files_info, /* to_files_info */ memory_insert_breakpoint, /* to_insert_breakpoint */ memory_remove_breakpoint, /* to_remove_breakpoint */ NULL, /* to_terminal_init */ @@ -232,15 +232,15 @@ struct target_ops bdm_ppc_ops = { NULL, /* to_terminal_ours_for_output */ NULL, /* to_terminal_ours */ NULL, /* to_terminal_info */ - wiggler_kill, /* to_kill */ - wiggler_load, /* to_load */ + ocd_kill, /* to_kill */ + ocd_load, /* to_load */ NULL, /* to_lookup_symbol */ - wiggler_create_inferior, /* to_create_inferior */ - wiggler_mourn, /* to_mourn_inferior */ + ocd_create_inferior, /* to_create_inferior */ + ocd_mourn, /* to_mourn_inferior */ 0, /* to_can_run */ 0, /* to_notice_signals */ - wiggler_thread_alive, /* to_thread_alive */ - wiggler_stop, /* to_stop */ + ocd_thread_alive, /* to_thread_alive */ + ocd_stop, /* to_stop */ process_stratum, /* to_stratum */ NULL, /* to_next */ 1, /* to_has_all_memory */ |