/* epple2 Copyright (C) 2008 by Christopher A. Mosher This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef APPLE2_H #define APPLE2_H #include "timable.h" #include "slots.h" #include "videomode.h" #include "keyboard.h" #include "addressbus.h" #include "memory.h" #include "memoryrandomaccess.h" #include "picturegenerator.h" #include "textcharacters.h" #include "video.h" #include "abstractcpu.h" #include "cpu.h" #include "paddles.h" #include "paddlebuttonstates.h" #include "speakerclicker.h" #include "analogtv.h" #include "powerupreset.h" #include "cassettein.h" #include "cassetteout.h" #include "Emu6502.h" #include class Emulator; class ScreenImage; class Apple2 : public Timable { Slots slts; VideoMode videoMode; Keyboard kbd; Paddles paddles; SpeakerClicker speaker; Memory rom; MemoryRandomAccess ram; CassetteIn cassetteIn; CassetteOut cassetteOut; AddressBus addressBus; PictureGenerator picgen; TextCharacters textRows; Video video; std::ifstream transistors; AbstractCpu* cpu; PowerUpReset powerUpReset; int revision; public: Apple2(KeypressQueue& keypresses, PaddleButtonStates& paddleButtonStates, AnalogTV& tv, HyperMode& fhyper, KeyboardBufferMode& buffered, ScreenImage& gui); ~Apple2(); void useEpple2Cpu(); void useVisual6502Cpu(); void powerOn(); void powerOff(); void reset(); virtual void tick(); friend class Emulator; }; #endif