1 |
|
/* |
2 |
< |
* mon.h - Machine language monitor |
2 |
> |
* mon.h - cxmon main program |
3 |
|
* |
4 |
< |
* (C) 1997-1999 Christian Bauer |
4 |
> |
* cxmon (C) 1997-2002 Christian Bauer, Marc Hellwig |
5 |
> |
* |
6 |
> |
* This program is free software; you can redistribute it and/or modify |
7 |
> |
* it under the terms of the GNU General Public License as published by |
8 |
> |
* the Free Software Foundation; either version 2 of the License, or |
9 |
> |
* (at your option) any later version. |
10 |
> |
* |
11 |
> |
* This program is distributed in the hope that it will be useful, |
12 |
> |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
> |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
> |
* GNU General Public License for more details. |
15 |
> |
* |
16 |
> |
* You should have received a copy of the GNU General Public License |
17 |
> |
* along with this program; if not, write to the Free Software |
18 |
> |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
|
*/ |
20 |
|
|
21 |
< |
#ifndef _MON_H_ |
22 |
< |
#define _MON_H_ |
21 |
> |
#ifndef MON_H |
22 |
> |
#define MON_H |
23 |
|
|
24 |
+ |
#include <stdio.h> |
25 |
|
|
11 |
– |
// Version/revision |
12 |
– |
const int MON_VERSION = 2; |
13 |
– |
const int MON_REVISION = 2; |
14 |
– |
|
15 |
– |
|
16 |
– |
// Data types |
17 |
– |
#if __BEOS__ |
18 |
– |
#include <SupportDefs.h> |
19 |
– |
#else |
20 |
– |
typedef signed char int8; |
21 |
– |
typedef unsigned char uint8; |
22 |
– |
typedef signed short int16; |
23 |
– |
typedef unsigned short uint16; |
24 |
– |
typedef signed long int32; |
25 |
– |
typedef unsigned long uint32; |
26 |
– |
#endif |
26 |
|
|
27 |
+ |
/* |
28 |
+ |
* Initialization, deinitialization and invocation |
29 |
+ |
*/ |
30 |
|
|
29 |
– |
// Initialization, deinitialization and invocation |
31 |
|
void mon_init(void); |
32 |
|
void mon_exit(void); |
33 |
|
void mon(int argc, char **argv); |
68 |
|
|
69 |
|
// Scanner variables |
70 |
|
extern enum Token mon_token; // Last token read |
71 |
< |
extern uint32 mon_number; // Contains the number if mon_token==T_NUMBER |
71 |
> |
extern uintptr mon_number; // Contains the number if mon_token==T_NUMBER |
72 |
|
extern char mon_string[INPUT_LENGTH]; // Contains the string if mon_token==T_STRING |
73 |
|
extern char mon_name[INPUT_LENGTH]; // Contains the variable name if mon_token==T_NAME |
74 |
|
|
76 |
|
extern FILE *monin, *monout, *monerr; |
77 |
|
|
78 |
|
// Current address, value of '.' in expressions |
79 |
< |
extern uint32 mon_dot_address; |
79 |
> |
extern uintptr mon_dot_address; |
80 |
|
|
81 |
|
extern bool mon_use_real_mem; // Flag: mon is using real memory |
82 |
|
extern uint32 mon_mem_size; // Size of mon buffer (if mon_use_real_mem = false) |
83 |
|
|
84 |
+ |
extern bool mon_macos_mode; // Flag: enable features in the disassembler for working with MacOS code |
85 |
+ |
|
86 |
|
// Add command to mon |
87 |
|
extern void mon_add_command(const char *name, void (*func)(void), const char *help_text); |
88 |
|
|
89 |
|
// Functions for commands |
90 |
|
extern void mon_error(const char *s); // Print error message |
91 |
|
extern enum Token mon_get_token(void); // Get next token |
92 |
< |
extern bool mon_expression(uint32 *number); // Parse expression |
92 |
> |
extern bool mon_expression(uintptr *number); // Parse expression |
93 |
|
extern bool mon_aborted(void); // Check if Ctrl-C was pressed |
94 |
< |
extern uint32 mon_read_byte(uint32 adr); // Memory access |
95 |
< |
extern void mon_write_byte(uint32 adr, uint32 b); |
96 |
< |
extern uint32 mon_read_half(uint32 adr); |
97 |
< |
extern void mon_write_half(uint32 adr, uint32 w); |
98 |
< |
extern uint32 mon_read_word(uint32 adr); |
99 |
< |
extern void mon_write_word(uint32 adr, uint32 l); |
94 |
> |
|
95 |
> |
// Memory access |
96 |
> |
extern uint32 (*mon_read_byte)(uintptr adr); |
97 |
> |
extern void (*mon_write_byte)(uintptr adr, uint32 b); |
98 |
> |
extern uint32 mon_read_half(uintptr adr); |
99 |
> |
extern void mon_write_half(uintptr adr, uint32 w); |
100 |
> |
extern uint32 mon_read_word(uintptr adr); |
101 |
> |
extern void mon_write_word(uintptr adr, uint32 l); |
102 |
|
|
103 |
|
#endif |