--- mon/src/mon.cpp 1999/10/25 08:04:45 1.5 +++ mon/src/mon.cpp 2000/04/24 13:10:00 1.6 @@ -1,7 +1,7 @@ /* * mon.cpp - mon main program * - * mon (C) 1997-1999 Christian Bauer, Marc Hellwig + * mon (C) 1997-2000 Christian Bauer, Marc Hellwig * * 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 @@ -1062,6 +1062,7 @@ void mon_init(void) mon_add_command("@", reallocate, "@ [size] Reallocate buffer\n"); mon_add_command("i", ascii_dump, "i [start [end]] ASCII memory dump\n"); mon_add_command("m", memory_dump, "m [start [end]] Hex/ASCII memory dump\n"); + mon_add_command("b", binary_dump, "b [start [end]] Binary memory dump\n"); mon_add_command("d", disassemble_ppc, "d [start [end]] Disassemble PowerPC code\n"); mon_add_command("d65", disassemble_6502, "d65 [start [end]] Disassemble 6502 code\n"); mon_add_command("d68", disassemble_680x0, "d68 [start [end]] Disassemble 680x0 code\n"); @@ -1156,8 +1157,8 @@ void mon(int argc, char **argv) // Print banner if (interactive) - fprintf(monerr, "\n *** mon V%d.%d by Christian Bauer and Marc Hellwig ***\n" - " *** Press 'h' for help ***\n\n", MON_VERSION_MAJOR, MON_VERSION_MINOR); + fprintf(monerr, "\n *** mon V" VERSION " by Christian Bauer and Marc Hellwig ***\n" + " *** Press 'h' for help ***\n\n"); } init_abort();