1 |
|
/* |
2 |
|
* sys.h - System dependent routines (mostly I/O) |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2008 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 |
21 |
|
#ifndef SYS_H |
22 |
|
#define SYS_H |
23 |
|
|
24 |
+ |
// Supported media types |
25 |
+ |
enum { |
26 |
+ |
MEDIA_FLOPPY = 1, |
27 |
+ |
MEDIA_CD = 2, |
28 |
+ |
MEDIA_HD = 4, |
29 |
+ |
MEDIA_REMOVABLE = MEDIA_FLOPPY | MEDIA_CD |
30 |
+ |
}; |
31 |
+ |
|
32 |
|
extern void SysInit(void); |
33 |
|
extern void SysExit(void); |
34 |
|
|