From 71adb964e5113f5066dd306de78e6de43e81e8d8 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 14 Apr 2018 21:41:26 -0400 Subject: [PATCH] The Apple II now has a functioning processor, ROM and RAM. --- Machines/AppleII/AppleII.cpp | 43 +++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/Machines/AppleII/AppleII.cpp b/Machines/AppleII/AppleII.cpp index 23d6d2721..cbe588e5a 100644 --- a/Machines/AppleII/AppleII.cpp +++ b/Machines/AppleII/AppleII.cpp @@ -9,6 +9,9 @@ #include "AppleII.hpp" #include "../CRTMachine.hpp" +#include "../Utility/MemoryFuzzer.hpp" + +#include "../../Processors/6502/6502.hpp" #include "Video.hpp" @@ -18,11 +21,14 @@ namespace { class ConcreteMachine: public CRTMachine::Machine, + public CPU::MOS6502::BusHandler, public AppleII::Machine { public: - ConcreteMachine() { + ConcreteMachine(): + m6502_(*this) { set_clock_rate(1022727); + Memory::Fuzz(ram_, sizeof(ram_)); } void setup_output(float aspect_ratio) override { @@ -42,10 +48,45 @@ class ConcreteMachine: } void run_for(const Cycles cycles) override { + m6502_.run_for(cycles); + } + + Cycles perform_bus_operation(CPU::MOS6502::BusOperation operation, uint16_t address, uint8_t *value) { + if(isReadOperation(operation)) { + if(address < sizeof(ram_)) { + *value = ram_[address]; + } else if(address >= rom_start_address_) { + *value = rom_[address - rom_start_address_]; + } + } else { + if(address < sizeof(ram_)) { + ram_[address] = *value; + } + } + return Cycles(1); + } + + bool set_rom_fetcher(const std::function>>(const std::string &machine, const std::vector &names)> &roms_with_names) override { + auto roms = roms_with_names( + "AppleII", + { + "apple2o.rom" + }); + + if(!roms[0]) return false; + rom_ = std::move(*roms[0]); + rom_start_address_ = static_cast(0x10000 - rom_.size()); + + return true; } private: + CPU::MOS6502::Processor m6502_; std::unique_ptr video_; + + uint8_t ram_[48*1024]; + std::vector rom_; + uint16_t rom_start_address_; }; }