~ubuntu-branches/ubuntu/quantal/vice/quantal

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-02-11 18:30:16 UTC
  • mfrom: (1.1.8 upstream) (9.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100211183016-f6n8usn3tzp0u6dp
Tags: 2.2.dfsg-1
* New upstream release, C64 DTV is included so update package description
  and add it to the menu.
* Drop patch fixing build failure with gcc-4.4 , applied upstream.
* Fix some lintian problems and clean up debian/rules .

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 *
25
25
 */
26
26
 
27
 
#ifndef _C64CARTMEM_H
28
 
#define _C64CARTMEM_H
 
27
#ifndef VICE_C64CARTMEM_H
 
28
#define VICE_C64CARTMEM_H
29
29
 
30
30
#include "types.h"
31
31
 
32
32
#define CMODE_READ  0
33
33
#define CMODE_WRITE 1
34
34
 
35
 
extern void cartridge_config_changed(BYTE mode_phi1, BYTE mode_phi2,
36
 
                                     unsigned int wflag);
 
35
extern void cartridge_config_changed(BYTE mode_phi1, BYTE mode_phi2, unsigned int wflag);
37
36
 
38
 
void cartridge_romhbank_set(unsigned int bank);
39
 
void cartridge_romlbank_set(unsigned int bank);
 
37
extern void cartridge_romhbank_set(unsigned int bank);
 
38
extern void cartridge_romlbank_set(unsigned int bank);
40
39
 
41
40
extern BYTE export_ram0[];
42
41
 
 
42
extern int cartmode;
 
43
 
43
44
#endif
44