/ src / cli / menu.h
menu.h
 1  /*
 2   * menu.h
 3   *
 4   * Copyright (C) 1999 Jonathan St-André
 5   * Copyright (C) 1999 Hugo Villeneuve <hugo@hugovil.com>
 6   *
 7   * This file is released under the GPLv2
 8   */
 9  
10  #ifndef _MENU_H_
11  #define _MENU_H_
12  
13  int
14  yyparse(void);
15  
16  int
17  menu_get_input(char *buf, ssize_t size);
18  
19  void
20  menu_display_usage(void);
21  
22  void
23  console_show_registers(void);
24  
25  void
26  register_set(char *name, int value);
27  
28  void
29  console_reset(void);
30  
31  void
32  console_exec(int num);
33  
34  void
35  console_trace(void);
36  
37  void
38  disassemble_num(unsigned int address, int num);
39  
40  #endif /* _MENU_H_ */