~ubuntu-branches/debian/squeeze/stella/squeeze

« back to all changes in this revision

Viewing changes to src/emucore/CartFE.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Mario Iseli
  • Date: 2006-04-08 18:38:25 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060408183825-vu1jk57rk929derx
* New Maintainer (Closes: #361345)
* New upstream release (Closes: #349725)
* Build-Depend now on libslang2-dev (Closes: #325577)
* Complete rebuild of debian/, upgraded to policy-standards
  3.6.2 and compat-level 5.
* Removed stellarc since stella only reads ~/.stellarc and even
  works without a first config.
* New debian/watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
//  SS  SS   tt   ee      ll   ll  aa  aa
9
9
//   SSSS     ttt  eeeee llll llll  aaaaa
10
10
//
11
 
// Copyright (c) 1995-1998 by Bradford W. Mott
 
11
// Copyright (c) 1995-2005 by Bradford W. Mott and the Stella team
12
12
//
13
13
// See the file "license" for information on usage and redistribution of
14
14
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
15
15
//
16
 
// $Id: CartFE.hxx,v 1.2 2002/05/13 19:17:32 stephena Exp $
 
16
// $Id: CartFE.hxx,v 1.5 2005/07/30 16:58:22 urchlay Exp $
17
17
//============================================================================
18
18
 
19
19
#ifndef CARTRIDGEFE_HXX
43
43
    monitoring the bus.
44
44
 
45
45
  @author  Bradford W. Mott
46
 
  @version $Id: CartFE.hxx,v 1.2 2002/05/13 19:17:32 stephena Exp $
 
46
  @version $Id: CartFE.hxx,v 1.5 2005/07/30 16:58:22 urchlay Exp $
47
47
*/
48
48
class CartridgeFE : public Cartridge
49
49
{
97
97
    */
98
98
    virtual bool load(Deserializer& in);
99
99
 
 
100
    virtual uInt8* getImage(int& size);
 
101
 
100
102
  public:
101
103
    /**
102
104
      Get the byte at the specified address.
113
115
    */
114
116
    virtual void poke(uInt16 address, uInt8 value);
115
117
 
 
118
         bool patch(uInt16 address, uInt8 value);
 
119
 
116
120
  private:
117
121
    // The 8K ROM image of the cartridge
118
122
    uInt8 myImage[8192];