From 2c4dcf8843ac463b0848ec521dcbab48b7020de7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 12 Feb 2021 21:50:24 -0500 Subject: [PATCH] Edges towards implementing an ADB device. --- InstructionSets/M50740/Executor.cpp | 4 +++ Machines/Apple/ADB/Bus.hpp | 2 ++ Machines/Apple/ADB/Mouse.cpp | 30 +++++++++++++++++++ Machines/Apple/ADB/Mouse.hpp | 30 +++++++++++++++++++ Machines/Apple/AppleIIgs/ADB.cpp | 2 +- Machines/Apple/AppleIIgs/ADB.hpp | 3 ++ Machines/Utility/MemoryFuzzer.hpp | 6 ++-- .../Clock Signal.xcodeproj/project.pbxproj | 8 +++++ 8 files changed, 81 insertions(+), 4 deletions(-) create mode 100644 Machines/Apple/ADB/Mouse.cpp create mode 100644 Machines/Apple/ADB/Mouse.hpp diff --git a/InstructionSets/M50740/Executor.cpp b/InstructionSets/M50740/Executor.cpp index 61397071c..449fab886 100644 --- a/InstructionSets/M50740/Executor.cpp +++ b/InstructionSets/M50740/Executor.cpp @@ -12,6 +12,8 @@ #include #include +#include "../../Machines/Utility/MemoryFuzzer.hpp" + #define LOG_PREFIX "[M50740] " #include "../../Outputs/Log.hpp" @@ -35,6 +37,8 @@ Executor::Executor(PortHandler &port_handler) : port_handler_(port_handler) { performers_[c] = performer_lookup_.performer(instruction.operation, instruction.addressing_mode); } } + + Memory::Fuzz(memory_); } void Executor::set_rom(const std::vector &rom) { diff --git a/Machines/Apple/ADB/Bus.hpp b/Machines/Apple/ADB/Bus.hpp index 48d7c56cf..1c7cc91d0 100644 --- a/Machines/Apple/ADB/Bus.hpp +++ b/Machines/Apple/ADB/Bus.hpp @@ -23,7 +23,9 @@ struct Command { Reset, Flush, Reserved, + /// The host wishes the device to store register contents. Listen, + /// The host wishes the device to broadcast register contents. Talk }; const Type type = Type::Reserved; diff --git a/Machines/Apple/ADB/Mouse.cpp b/Machines/Apple/ADB/Mouse.cpp new file mode 100644 index 000000000..04924dbf1 --- /dev/null +++ b/Machines/Apple/ADB/Mouse.cpp @@ -0,0 +1,30 @@ +// +// Mouse.cpp +// Clock Signal +// +// Created by Thomas Harte on 12/02/2021. +// Copyright © 2021 Thomas Harte. All rights reserved. +// + +#include "Mouse.hpp" + +using namespace Apple::ADB; + +Mouse::Mouse(Bus &bus) : ReactiveDevice(bus) {} + +void Mouse::adb_bus_did_observe_event(Bus::Event event, uint8_t value) { + if(!next_is_command_ && event != Bus::Event::Attention) { + return; + } + + if(next_is_command_ && event == Bus::Event::Byte) { + next_is_command_ = false; + + const auto command = decode_command(value); + if(command.device != 3) { + return; + } + } else if(event == Bus::Event::Attention) { + next_is_command_ = true; + } +} diff --git a/Machines/Apple/ADB/Mouse.hpp b/Machines/Apple/ADB/Mouse.hpp new file mode 100644 index 000000000..5749d1cb4 --- /dev/null +++ b/Machines/Apple/ADB/Mouse.hpp @@ -0,0 +1,30 @@ +// +// Mouse.hpp +// Clock Signal +// +// Created by Thomas Harte on 12/02/2021. +// Copyright © 2021 Thomas Harte. All rights reserved. +// + +#ifndef Mouse_hpp +#define Mouse_hpp + +#include "ReactiveDevice.hpp" + +namespace Apple { +namespace ADB { + +class Mouse: public ReactiveDevice { + public: + Mouse(Bus &); + + void adb_bus_did_observe_event(Bus::Event event, uint8_t value) override; + + private: + bool next_is_command_ = false; +}; + +} +} + +#endif /* Mouse_hpp */ diff --git a/Machines/Apple/AppleIIgs/ADB.cpp b/Machines/Apple/AppleIIgs/ADB.cpp index e00c36ac6..6e6612080 100644 --- a/Machines/Apple/AppleIIgs/ADB.cpp +++ b/Machines/Apple/AppleIIgs/ADB.cpp @@ -39,7 +39,7 @@ enum class MicrocontrollerFlags: uint8_t { } -GLU::GLU() : executor_(*this), bus_(HalfCycles(1'789'772)), controller_id_(bus_.add_device()) {} +GLU::GLU() : executor_(*this), bus_(HalfCycles(1'789'772)), controller_id_(bus_.add_device()), mouse_(bus_) {} // MARK: - External interface. diff --git a/Machines/Apple/AppleIIgs/ADB.hpp b/Machines/Apple/AppleIIgs/ADB.hpp index ae8cb1d40..daae04f73 100644 --- a/Machines/Apple/AppleIIgs/ADB.hpp +++ b/Machines/Apple/AppleIIgs/ADB.hpp @@ -12,7 +12,9 @@ #include #include #include "../../../InstructionSets/M50740/Executor.hpp" + #include "../ADB/Bus.hpp" +#include "../ADB/Mouse.hpp" namespace Apple { namespace IIgs { @@ -55,6 +57,7 @@ class GLU: public InstructionSet::M50740::PortHandler { size_t controller_id_; // TODO: add some other devices, and attach them to the ADB bus. + Apple::ADB::Mouse mouse_; }; } diff --git a/Machines/Utility/MemoryFuzzer.hpp b/Machines/Utility/MemoryFuzzer.hpp index a40406acd..9d5751679 100644 --- a/Machines/Utility/MemoryFuzzer.hpp +++ b/Machines/Utility/MemoryFuzzer.hpp @@ -21,9 +21,9 @@ void Fuzz(uint8_t *buffer, std::size_t size); /// Stores @c size random 16-bit words from @c buffer onwards. void Fuzz(uint16_t *buffer, std::size_t size); -/// Replaces all existing vector contents with random bytes. -template void Fuzz(std::vector &buffer) { - Fuzz(reinterpret_cast(buffer.data()), buffer.size() * sizeof(buffer[0])); +/// Replaces all existing vector or array contents with random bytes. +template void Fuzz(T &buffer) { + Fuzz(reinterpret_cast(buffer.data()), buffer.size() * sizeof(typename T::value_type)); } } diff --git a/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj b/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj index 1dafeca2a..dac0727e8 100644 --- a/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj +++ b/OSBindings/Mac/Clock Signal.xcodeproj/project.pbxproj @@ -174,6 +174,8 @@ 4B2E2D9D1C3A070400138695 /* Electron.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B2E2D9B1C3A070400138695 /* Electron.cpp */; }; 4B2E86B725D7490E0024F1E9 /* ReactiveDevice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B2E86B525D7490E0024F1E9 /* ReactiveDevice.cpp */; }; 4B2E86B825D7490E0024F1E9 /* ReactiveDevice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B2E86B525D7490E0024F1E9 /* ReactiveDevice.cpp */; }; + 4B2E86BE25D74F160024F1E9 /* Mouse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B2E86BC25D74F160024F1E9 /* Mouse.cpp */; }; + 4B2E86BF25D74F160024F1E9 /* Mouse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B2E86BC25D74F160024F1E9 /* Mouse.cpp */; }; 4B302184208A550100773308 /* DiskII.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B302183208A550100773308 /* DiskII.cpp */; }; 4B302185208A550100773308 /* DiskII.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B302183208A550100773308 /* DiskII.cpp */; }; 4B30512D1D989E2200B4FED8 /* Drive.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B30512B1D989E2200B4FED8 /* Drive.cpp */; }; @@ -1120,6 +1122,8 @@ 4B2E2D9C1C3A070400138695 /* Electron.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Electron.hpp; path = Electron/Electron.hpp; sourceTree = ""; }; 4B2E86B525D7490E0024F1E9 /* ReactiveDevice.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = ReactiveDevice.cpp; sourceTree = ""; }; 4B2E86B625D7490E0024F1E9 /* ReactiveDevice.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = ReactiveDevice.hpp; sourceTree = ""; }; + 4B2E86BC25D74F160024F1E9 /* Mouse.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = Mouse.cpp; sourceTree = ""; }; + 4B2E86BD25D74F160024F1E9 /* Mouse.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = Mouse.hpp; sourceTree = ""; }; 4B302182208A550100773308 /* DiskII.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = DiskII.hpp; sourceTree = ""; }; 4B302183208A550100773308 /* DiskII.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DiskII.cpp; sourceTree = ""; }; 4B30512B1D989E2200B4FED8 /* Drive.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Drive.cpp; sourceTree = ""; }; @@ -4195,6 +4199,8 @@ 4BCE1DF025D4C3FA00AE7A2B /* Bus.hpp */, 4B2E86B525D7490E0024F1E9 /* ReactiveDevice.cpp */, 4B2E86B625D7490E0024F1E9 /* ReactiveDevice.hpp */, + 4B2E86BC25D74F160024F1E9 /* Mouse.cpp */, + 4B2E86BD25D74F160024F1E9 /* Mouse.hpp */, ); path = ADB; sourceTree = ""; @@ -5028,6 +5034,7 @@ 4B055AC11FAE98DC0060FFFF /* MachineForTarget.cpp in Sources */, 4B65086122F4CFE0009C1100 /* Keyboard.cpp in Sources */, 4BBB70A9202014E2002FE009 /* MultiProducer.cpp in Sources */, + 4B2E86BF25D74F160024F1E9 /* Mouse.cpp in Sources */, 4B6ED2F1208E2F8A0047B343 /* WOZ.cpp in Sources */, 4B055AD81FAE9B180060FFFF /* Video.cpp in Sources */, 4B89452F201967B4007DE474 /* StaticAnalyser.cpp in Sources */, @@ -5252,6 +5259,7 @@ 4B89453C201967B4007DE474 /* StaticAnalyser.cpp in Sources */, 4B595FAD2086DFBA0083CAA8 /* AudioToggle.cpp in Sources */, 4B1497921EE4B5A800CE2596 /* ZX8081.cpp in Sources */, + 4B2E86BE25D74F160024F1E9 /* Mouse.cpp in Sources */, 4B643F3F1D77B88000D431D6 /* DocumentController.swift in Sources */, 4BDA00E422E663B900AC3CD0 /* NSData+CRC32.m in Sources */, 4BB8616E24E22DC500A00E03 /* BufferingScanTarget.cpp in Sources */,