ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/AmigaOS/sysdeps.h
Revision: 1.6
Committed: 1999-10-25T08:07:49Z (24 years, 7 months ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.5: +3 -0 lines
Log Message:
- now uses "mon" if present (currently on breakpoints only)

File Contents

# Content
1 /*
2 * sysdeps.h - System dependent definitions for AmigaOS
3 *
4 * Basilisk II (C) 1997-1999 Christian Bauer
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 SYSDEPS_H
22 #define SYSDEPS_H
23
24 #include <exec/types.h>
25 #include <devices/timer.h>
26 #include <assert.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include "user_strings_amiga.h"
32
33 // Are the Mac and the host address space the same?
34 #define REAL_ADDRESSING 1
35
36 // Are we using a 68k emulator or the real thing?
37 #define EMULATED_68K 0
38
39 // Is the Mac ROM write protected?
40 #define ROM_IS_WRITE_PROTECTED 0
41
42 // ExtFS is supported
43 #define SUPPORTS_EXTFS 1
44
45 // mon is not supported
46 #define ENABLE_MON 0
47
48 // Data types
49 typedef unsigned char uint8;
50 typedef signed char int8;
51 typedef unsigned short uint16;
52 typedef signed short int16;
53 typedef unsigned long uint32;
54 typedef signed long int32;
55
56 #ifdef __GNUC__
57 typedef unsigned long long loff_t;
58 #endif
59
60 #ifdef __SASC
61 typedef char bool;
62 #define true 1
63 #define false 0
64 typedef LONG loff_t;
65 #endif
66
67 // Time data type for Time Manager emulation
68 typedef struct timeval tm_time_t;
69
70 // Offset Mac->AmigaOS time in seconds
71 #define TIME_OFFSET 0x8b31ef80
72
73 // Endianess conversion (not needed)
74 #define ntohs(x) (x)
75 #define ntohl(x) (x)
76 #define htons(x) (x)
77 #define htonl(x) (x)
78
79 // Some systems don't define this
80 #ifndef AFF_68060
81 #define AFF_68060 (1L<<7)
82 #endif
83
84 #endif