1 |
|
/* |
2 |
< |
* mon.h - Machine language monitor |
2 |
> |
* mon.h - mon main program |
3 |
|
* |
4 |
< |
* (C) 1997-1999 Christian Bauer |
4 |
> |
* mon (C) 1997-1999 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_ |
9 |
< |
|
21 |
> |
#ifndef MON_H |
22 |
> |
#define MON_H |
23 |
|
|
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 |
24 |
|
|
25 |
+ |
/* |
26 |
+ |
* Initialization, deinitialization and invocation |
27 |
+ |
*/ |
28 |
|
|
29 |
– |
// Initialization, deinitialization and invocation |
29 |
|
void mon_init(void); |
30 |
|
void mon_exit(void); |
31 |
|
void mon(int argc, char **argv); |