File: Device.cxx

package info (click to toggle)
stella 0.7-2
  • links: PTS
  • area: non-free
  • in suites: hamm, slink
  • size: 864 kB
  • ctags: 1,158
  • sloc: cpp: 6,615; ansic: 492; makefile: 224; asm: 31
file content (41 lines) | stat: -rw-r--r-- 1,304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//============================================================================
//
//    SSSS    tt          lll  lll              
//   SS  SS   tt           ll   ll                
//   SS     tttttt  eeee   ll   ll   aaaa    "An Atari 2600 VCS Emulator"
//    SSSS    tt   ee  ee  ll   ll      aa      
//       SS   tt   eeeeee  ll   ll   aaaaa   Copyright (c) 1995,1996,1997
//   SS  SS   tt   ee      ll   ll  aa  aa         Bradford W. Mott
//    SSSS     ttt  eeeee llll llll  aaaaa    
//
//============================================================================

/**
  Abstract base class used for devices that are attached to the System
  in the "core" code.

  @author  Bradford W. Mott
  @version $Id: Device.cxx,v 1.2 1997/05/17 19:00:05 bwmott Exp $
*/

#include "Device.hxx"
#include "System.hxx"

//============================================================================
// Constructor
//============================================================================
Device::Device(System& system)
    : mySystem(system)
{
}

//============================================================================
// Destructor
//============================================================================
Device::~Device()
{
  // Tell system to unmap myself
  mySystem.unmap(*this);
}