From 6efb9b24e077ae335434c8110867cb9fceeea078 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 8 Jun 2022 14:44:15 -0400 Subject: [PATCH] Ensure that a phoney reset gets the proper vector. --- Processors/68000/Implementation/68000Implementation.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index f547d16a9..08eea1289 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -2240,6 +2240,7 @@ void ProcessorStorage::set_status(uint16_t status) { template void Processor::reset() { execution_state_ = ExecutionState::Executing; active_step_ = reset_bus_steps_; + effective_address_[0] = 0; is_supervisor_ = 1; interrupt_level_ = 7; }