1130803Smarcel/* Disassembly display.
2130803Smarcel
3130803Smarcel   Copyright 1998, 1999, 2000, 2001, 2004 Free Software Foundation,
4130803Smarcel   Inc.
5130803Smarcel
6130803Smarcel   Contributed by Hewlett-Packard Company.
7130803Smarcel
8130803Smarcel   This file is part of GDB.
9130803Smarcel
10130803Smarcel   This program is free software; you can redistribute it and/or modify
11130803Smarcel   it under the terms of the GNU General Public License as published by
12130803Smarcel   the Free Software Foundation; either version 2 of the License, or
13130803Smarcel   (at your option) any later version.
14130803Smarcel
15130803Smarcel   This program is distributed in the hope that it will be useful,
16130803Smarcel   but WITHOUT ANY WARRANTY; without even the implied warranty of
17130803Smarcel   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18130803Smarcel   GNU General Public License for more details.
19130803Smarcel
20130803Smarcel   You should have received a copy of the GNU General Public License
21130803Smarcel   along with this program; if not, write to the Free Software
22130803Smarcel   Foundation, Inc., 59 Temple Place - Suite 330,
23130803Smarcel   Boston, MA 02111-1307, USA.  */
24130803Smarcel
25130803Smarcel#ifndef TUI_DISASM_H
26130803Smarcel#define TUI_DISASM_H
27130803Smarcel
28130803Smarcel#include "tui/tui.h"		/* For enum tui_status.  */
29130803Smarcel#include "tui/tui-data.h"	/* For enum tui_scroll_direction.  */
30130803Smarcel
31130803Smarcelextern enum tui_status tui_set_disassem_content (CORE_ADDR);
32130803Smarcelextern void tui_show_disassem (CORE_ADDR);
33130803Smarcelextern void tui_show_disassem_and_update_source (CORE_ADDR);
34130803Smarcelextern void tui_vertical_disassem_scroll (enum tui_scroll_direction, int);
35130803Smarcelextern CORE_ADDR tui_get_begin_asm_address (void);
36130803Smarcel
37130803Smarcel#endif
38