home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Emulation / BasiliskII / src / AmigaOS / sysdeps.h < prev    next >
C/C++ Source or Header  |  1999-11-01  |  2KB  |  78 lines

  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. typedef unsigned long long uint64;
  56. typedef signed long long int64;
  57.  
  58. typedef unsigned long long loff_t;
  59.  
  60. // Time data type for Time Manager emulation
  61. typedef struct timeval tm_time_t;
  62.  
  63. // Offset Mac->AmigaOS time in seconds
  64. #define TIME_OFFSET 0x8b31ef80
  65.  
  66. // Endianess conversion (not needed)
  67. #define ntohs(x) (x)
  68. #define ntohl(x) (x)
  69. #define htons(x) (x)
  70. #define htonl(x) (x)
  71.  
  72. // Some systems don't define this (ExecBase->AttnFlags)
  73. #ifndef AFF_68060
  74. #define AFF_68060 (1L<<7)
  75. #endif
  76.  
  77. #endif
  78.