~ubuntu-branches/ubuntu/precise/vice/precise

« back to all changes in this revision

Viewing changes to src/drive/iec/iecrom.c

  • 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:
38
38
#include "sysfile.h"
39
39
 
40
40
 
41
 
#define DRIVE_ROM1541_CHECKSUM      1988651
 
41
#define DRIVE_ROM1541_CHECKSUM      1991711
42
42
 
43
43
 
44
44
/* Logging goes here.  */
46
46
 
47
47
static BYTE drive_rom1541[DRIVE_ROM1541_SIZE_EXPANDED];
48
48
static BYTE drive_rom1541ii[DRIVE_ROM1541II_SIZE_EXPANDED];
 
49
 
 
50
#ifdef USE_EMBEDDED
 
51
#include "drivedos1570.h"
 
52
#include "drivedos1571.h"
 
53
#include "drivedos1581.h"
 
54
#else
49
55
static BYTE drive_rom1570[DRIVE_ROM1571_SIZE];
50
56
static BYTE drive_rom1571[DRIVE_ROM1571_SIZE];
51
57
static BYTE drive_rom1581[DRIVE_ROM1581_SIZE];
 
58
#endif
52
59
 
53
60
/* If nonzero, the ROM image has been loaded.  */
54
61
static unsigned int rom1541_loaded = 0;