* monitor.c (monitor_vsprintf): New function to handle

printing of large addresses using %A format specifier.
	(monitor_printf_noecho, monitor_printf): Use monitor_vsprintf
	instead of vsprintf.
	* dve3900-rom.c (_initialize_r3900_rom): Use %A instead of %Lx
	to print addresses.
This commit is contained in:
Mark Alexander 1998-01-28 19:52:06 +00:00
parent f41751664d
commit 29df6f4b7e
2 changed files with 18 additions and 9 deletions

View File

@ -1,3 +1,12 @@
Wed Jan 28 11:23:25 1998 Mark Alexander <marka@cygnus.com>
* monitor.c (monitor_vsprintf): New function to handle
printing of large addresses using %A format specifier.
(monitor_printf_noecho, monitor_printf): Use monitor_vsprintf
instead of vsprintf.
* dve3900-rom.c (_initialize_r3900_rom): Use %A instead of %Lx
to print addresses.
Tue Jan 27 16:14:23 1998 Jason Molenda (crash@bugshack.cygnus.com)
* configure.in (CONFIG_LDFLAGS): Only add -export-dynamic

View File

@ -901,17 +901,17 @@ _initialize_r3900_rom ()
r3900_cmds.init = dummy_inits;
r3900_cmds.cont = "g\r";
r3900_cmds.step = "t\r";
r3900_cmds.set_break = "b %Lx\r"; /* COREADDR */
r3900_cmds.clr_break = "b %Lx,0\r"; /* COREADDR */
r3900_cmds.fill = "fx %Lx s %x %x\r"; /* COREADDR, len, val */
r3900_cmds.set_break = "b %A\r"; /* COREADDR */
r3900_cmds.clr_break = "b %A,0\r"; /* COREADDR */
r3900_cmds.fill = "fx %A s %x %x\r"; /* COREADDR, len, val */
r3900_cmds.setmem.cmdb = "sx %Lx %x\r"; /* COREADDR, val */
r3900_cmds.setmem.cmdw = "sh %Lx %x\r"; /* COREADDR, val */
r3900_cmds.setmem.cmdl = "sw %Lx %x\r"; /* COREADDR, val */
r3900_cmds.setmem.cmdb = "sx %A %x\r"; /* COREADDR, val */
r3900_cmds.setmem.cmdw = "sh %A %x\r"; /* COREADDR, val */
r3900_cmds.setmem.cmdl = "sw %A %x\r"; /* COREADDR, val */
r3900_cmds.getmem.cmdb = "sx %Lx\r"; /* COREADDR */
r3900_cmds.getmem.cmdw = "sh %Lx\r"; /* COREADDR */
r3900_cmds.getmem.cmdl = "sw %Lx\r"; /* COREADDR */
r3900_cmds.getmem.cmdb = "sx %A\r"; /* COREADDR */
r3900_cmds.getmem.cmdw = "sh %A\r"; /* COREADDR */
r3900_cmds.getmem.cmdl = "sw %A\r"; /* COREADDR */
r3900_cmds.getmem.resp_delim = " : ";
r3900_cmds.getmem.term = " ";
r3900_cmds.getmem.term_cmd = ".\r";