--- mon/src/mon_cmd.h 1999/10/04 19:31:09 1.1 +++ mon/src/mon_cmd.h 2002/01/18 16:03:33 1.6 @@ -1,11 +1,25 @@ /* - * mon_cmd.h - mon standard commands + * mon_cmd.h - cxmon standard commands * - * (C) 1997-1999 Christian Bauer + * cxmon (C) 1997-2002 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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. + * + * 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 */ -#ifndef _MON_CMD_H_ -#define _MON_CMD_H_ +#ifndef MON_CMD_H +#define MON_CMD_H extern void version(void); extern void redir_output(void); @@ -13,11 +27,13 @@ extern void print_expr(void); extern void shell_command(void); extern void memory_dump(void); extern void ascii_dump(void); +extern void binary_dump(void); extern void disassemble_ppc(void); extern void disassemble_6502(void); extern void disassemble_680x0(void); -extern void disassemble_8080(void); -extern void disassemble_80x86(void); +extern void disassemble_z80(void); +extern void disassemble_80x86_32(void); +extern void disassemble_80x86_16(void); extern void modify(void); extern void fill(void); extern void transfer(void);