ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/AmigaOS/sysdeps.h
Revision: 1.3
Committed: 1999-10-19T17:41:23Z (24 years, 7 months ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.2: +3 -0 lines
Log Message:
- added external file system
- moved most init/deinit code to InitAll()/ExitAll() in main.cpp

File Contents

# User Rev Content
1 cebix 1.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 cebix 1.2 #include "user_strings_amiga.h"
32    
33 cebix 1.1 // 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     // Data types
43     typedef unsigned char uint8;
44     typedef signed char int8;
45     typedef unsigned short uint16;
46     typedef signed short int16;
47     typedef unsigned long uint32;
48     typedef signed long int32;
49     typedef char bool;
50     #define true 1
51     #define false 0
52     typedef LONG loff_t;
53    
54     // Time data type for Time Manager emulation
55     typedef struct timeval tm_time_t;
56    
57 cebix 1.3 // Offset Mac->AmigaOS time in seconds
58     #define TIME_OFFSET 0x8b31ef80
59    
60 cebix 1.1 // Endianess conversion (not needed)
61     #define ntohs(x) (x)
62     #define ntohl(x) (x)
63     #define htons(x) (x)
64     #define htonl(x) (x)
65    
66     #endif