summaryrefslogtreecommitdiff
path: root/opcodes/m68hc11-dis.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-08-28 16:27:55 +0000
committerAndreas Jaeger <aj@suse.de>2001-08-28 16:27:55 +0000
commitb849bb422365dfac58b782c70bf29445e6f71d27 (patch)
tree7b2ddaa6257b75eec1bfd6b6cad7eec0692c4335 /opcodes/m68hc11-dis.c
parent42ef282fe77eb87eddcf893139b2f32a82c26343 (diff)
downloadbinutils-gdb-b849bb422365dfac58b782c70bf29445e6f71d27.tar.gz
* m68hc11-dis.c: Add missing prototypes.
(forgotten in last checkin)
Diffstat (limited to 'opcodes/m68hc11-dis.c')
-rw-r--r--opcodes/m68hc11-dis.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/opcodes/m68hc11-dis.c b/opcodes/m68hc11-dis.c
index 97c90fb44ad..31fbf27eaae 100644
--- a/opcodes/m68hc11-dis.c
+++ b/opcodes/m68hc11-dis.c
@@ -1,5 +1,5 @@
/* m68hc11-dis.c -- Motorola 68HC11 & 68HC12 disassembly
- Copyright 1999, 2000 Free Software Foundation, Inc.
+ Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
Written by Stephane Carrez (stcarrez@worldnet.fr)
This program is free software; you can redistribute it and/or modify
@@ -36,6 +36,14 @@ static const char *const reg_dst_table[] = {
#define OP_PAGE_MASK (M6811_OP_PAGE2|M6811_OP_PAGE3|M6811_OP_PAGE4)
+/* Prototypes for local functions. */
+static int read_memory
+ PARAMS ((bfd_vma, bfd_byte *, int, struct disassemble_info *));
+static int print_indexed_operand
+ PARAMS ((bfd_vma, struct disassemble_info *, int));
+static int print_insn
+ PARAMS ((bfd_vma, struct disassemble_info *, int));
+
static int
read_memory (memaddr, buffer, size, info)
bfd_vma memaddr;