Uses of Interface
de.michab.simulator.Chip

Packages that use Chip
de.michab.simulator This package contains all classes that should be reusable for other types of emulations.  
de.michab.simulator.mos6502 In the mos6502 package all chip emulations from this hardware family are placed.  
de.michab.simulator.mos6502.c64 Here's the place where the classes are placed that are responsible for implementing a real computer system -- the Commodore 64.  
 

Uses of Chip in de.michab.simulator
 

Classes in de.michab.simulator that implement Chip
 class DefaultChip
          This is a helper class providing a default implementation for the memory attribute and a simple port array factory.
 

Constructors in de.michab.simulator with parameters of type Chip
Port(Chip home, int portId)
          Creates an instance.
 

Uses of Chip in de.michab.simulator.mos6502
 

Classes in de.michab.simulator.mos6502 that implement Chip
 class Cia
          Represents an instance of the 64's 6526 Complex Input/output Adapter.
 class Cpu6510
          Implements a MOS6510 processor as built into the C64.
 class Extension
          This is an extension a.k.a. a patch.
 class Sid
          The MOS 6581 Sound Interface Device.
 class Vic
          Represents the C64's MOS6569 video interface chip.
 

Uses of Chip in de.michab.simulator.mos6502.c64
 

Methods in de.michab.simulator.mos6502.c64 that return Chip
 Chip C64Core.getVic()
          Returns a reference to the emulation's video interface chip (aka VIC).
 Chip C64Core.getSid()
          Returns a reference to the emulation's sound interface device (aka SID).
 Chip[] C64Core.getCia()
          Returns a reference to the emulation's pair of CIA chips.