1 /*
2  * c64-resources.h
3  *
4  * Written by
5  *  Andreas Boose <viceteam@t-online.de>
6  *
7  * This file is part of VICE, the Versatile Commodore Emulator.
8  * See README for copyright notice.
9  *
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
23  *  02111-1307  USA.
24  *
25  */
26 
27 #ifndef VICE_C64_RESOURCES_H
28 #define VICE_C64_RESOURCES_H
29 
30 extern int c64_resources_init(void);
31 extern void c64_resources_shutdown(void);
32 
33 extern void c64_resources_update_cia_models(int model);
34 
35 extern int acia_de_enabled;
36 
37 #define C64_KERNAL_UNKNOWN -1
38 #define C64_KERNAL_REV1 1       /* 901227-01 */
39 #define C64_KERNAL_REV2 2       /* 901227-02 */
40 #define C64_KERNAL_REV3 3       /* 901227-03 */
41 #define C64_KERNAL_SX64 67      /* 251104-04 */
42 #define C64_KERNAL_4064 100     /* 901246-01 */
43 
44 #define C64_KERNAL_JAP     -1   /* FIXME */
45 #define C64_KERNAL_GS64    -1   /* FIXME */
46 #define C64_KERNAL_MAX     -1   /* FIXME */
47 #define C64_KERNAL_REV3SWE -1   /* FIXME */
48 extern int kernal_revision;
49 extern int kernal_revision_cmdline;
50 
51 extern int cia1_model;
52 extern int cia2_model;
53 
54 #endif
55