~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/c64/cart/stardos.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.1.7 upstream) (9.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090331003715-i5yisvcfv7mgz3eh
Tags: 2.1.dfsg-1
* New major upstream release (closes: #495937).
* Add desktop files (closes: #501181).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * stardos.h - Cartridge handling, StarDOS cart.
 
3
 *
 
4
 * (w)2008 Groepaz/Hitmen
 
5
 *
 
6
 * This file is part of VICE, the Versatile Commodore Emulator.
 
7
 * See README for copyright notice.
 
8
 *
 
9
 *  This program is free software; you can redistribute it and/or modify
 
10
 *  it under the terms of the GNU General Public License as published by
 
11
 *  the Free Software Foundation; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  This program is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with this program; if not, write to the Free Software
 
21
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
22
 *  02111-1307  USA.
 
23
 *
 
24
 */
 
25
 
 
26
#ifndef _STARDOS_H
 
27
#define _STARDOS_H
 
28
 
 
29
#include <stdio.h>
 
30
 
 
31
#include "types.h"
 
32
 
 
33
extern int stardos_kernal_enabled;
 
34
 
 
35
extern BYTE REGPARM1 stardos_io1_read(WORD addr);
 
36
extern BYTE REGPARM1 stardos_io2_read(WORD addr);
 
37
extern BYTE REGPARM1 stardos_kernal_read(WORD addr);
 
38
extern BYTE REGPARM1 stardos_roml_read(WORD addr);
 
39
 
 
40
extern void stardos_config_init(void);
 
41
extern void stardos_reset(void);
 
42
extern void stardos_config_setup(BYTE *rawcart);
 
43
extern int stardos_bin_attach(const char *filename, BYTE *rawcart);
 
44
extern int stardos_crt_attach(FILE *fd, BYTE *rawcart);
 
45
extern void stardos_detach(void);
 
46
 
 
47
#endif