* m68hc11-dis.c: Add missing prototypes.
(forgotten in last checkin)
This commit is contained in:
parent
42ef282fe7
commit
b849bb4223
1 changed files with 9 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue