From 62da0dee7f663e7d9bcae98461ae5e2e4b209fed Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 2 Mar 2024 23:15:17 -0500 Subject: [PATCH] Unify reads. --- InstructionSets/ARM/Executor.hpp | 4 ++++ InstructionSets/ARM/Registers.hpp | 2 +- .../Mac/Clock SignalTests/ARMDecoderTests.mm | 22 ++++++++++--------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/InstructionSets/ARM/Executor.hpp b/InstructionSets/ARM/Executor.hpp index 170f7e891..2e4204ee1 100644 --- a/InstructionSets/ARM/Executor.hpp +++ b/InstructionSets/ARM/Executor.hpp @@ -554,6 +554,10 @@ struct Executor { return registers_.pc(0); } + Mode mode() const { + return registers_.mode(); + } + private: Registers registers_; }; diff --git a/InstructionSets/ARM/Registers.hpp b/InstructionSets/ARM/Registers.hpp index 76717228e..7b0fb4db5 100644 --- a/InstructionSets/ARM/Registers.hpp +++ b/InstructionSets/ARM/Registers.hpp @@ -95,7 +95,7 @@ struct Registers { } } - Mode mode() { + Mode mode() const { return mode_; } diff --git a/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm b/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm index 6d5a98073..05955cf18 100644 --- a/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm +++ b/OSBindings/Mac/Clock SignalTests/ARMDecoderTests.mm @@ -16,6 +16,8 @@ using namespace InstructionSet::ARM; namespace { struct Memory { + std::vector rom; + template bool write(uint32_t address, IntT source, Mode mode, bool trans) { (void)address; @@ -27,8 +29,13 @@ struct Memory { template bool read(uint32_t address, IntT &source, Mode mode, bool trans) { - (void)address; - (void)source; + if(address > 0x3800000) { + source = *reinterpret_cast(&rom[address - 0x3800000]); + } else { + // TODO: this is true only very transiently. + source = *reinterpret_cast(&rom[address]); + } + (void)mode; (void)trans; return true; @@ -192,18 +199,13 @@ struct Memory { ROM::Request request(rom_name); const auto roms = CSROMFetcher()(request); - const auto rom = roms.find(rom_name)->second; + Executor executor; + executor.bus_.rom = roms.find(rom_name)->second; uint32_t pc = 0; - Executor executor; for(int c = 0; c < 100; c++) { uint32_t instruction; - - if(pc > 0x3800000) { - instruction = *reinterpret_cast(&rom[pc - 0x3800000]); - } else { - instruction = *reinterpret_cast(&rom[pc]); - } + executor.bus_.read(pc, instruction, executor.mode(), false); printf("%08x: %08x\n", pc, instruction); dispatch(pc, instruction, executor);