// // MFP68901.hpp // Clock Signal // // Created by Thomas Harte on 06/10/2019. // Copyright © 2019 Thomas Harte. All rights reserved. // #ifndef MFP68901_hpp #define MFP68901_hpp #include #include "../../ClockReceiver/ClockReceiver.hpp" namespace Motorola { namespace MFP68901 { class PortHandler { public: // TODO: announce changes in output. }; class MFP68901 { public: uint8_t read(int address); void write(int address, uint8_t value); void run_for(HalfCycles); HalfCycles get_next_sequence_point(); void set_timer_event_input(int channel, bool value); void set_port_handler(PortHandler *); void set_port_input(uint8_t); uint8_t get_port_output(); bool get_interrupt_line(); uint8_t acknowledge_interrupt(); struct InterruptDelegate { virtual void mfp68901_did_change_interrupt_status(MFP68901 *) = 0; }; void set_interrupt_delegate(InterruptDelegate *delegate); private: // MARK: - Timers enum class TimerMode { Stopped, EventCount, Delay, PulseWidth }; void set_timer_mode(int timer, TimerMode, int prescale, bool reset_timer); void set_timer_data(int timer, uint8_t); uint8_t get_timer_data(int timer); void decrement_timer(int timer); struct Timer { TimerMode mode = TimerMode::Stopped; uint8_t value = 0; uint8_t reload_value = 0; int prescale = 1; int divisor = 1; bool event_input = false; } timers_[4]; HalfCycles cycles_left_; // MARK: - GPIP uint8_t gpip_input_ = 0; uint8_t gpip_output_ = 0; uint8_t gpip_active_edge_ = 0; uint8_t gpip_direction_ = 0; uint8_t gpip_interrupt_state_ = 0; void reevaluate_gpip_interrupts(); // MARK: - Interrupts InterruptDelegate *interrupt_delegate_ = nullptr; // Ad hoc documentation: // // An interrupt becomes pending if it is enabled at the time it occurs. // // If a pending interrupt is enabled in the interrupt mask, a processor // interrupt is generated. Otherwise no processor interrupt is generated. // // (Disabling a bit in the enabled mask also instantaneously clears anything // in the pending mask.) // // The user can write to the pending interrupt register; a write // masks whatever is there — so you can disable bits but you cannot set them. // // If the vector register's 'S' bit is set then software end-of-interrupt mode applies: // Acknowledgement of an interrupt clears that interrupt's pending bit, but also sets // its in-service bit. That bit will remain set until the user writes a zero to its position. // If any bits are set in the in-service register, then they will prevent lower-priority // interrupts from being signalled to the CPU. Further interrupts of the same or a higher // priority may occur. // // If the vector register's 'S' bit is clear then automatic end-of-interrupt mode applies: // Acknowledgement of an interrupt will automatically clear the corresponding // pending bit. // int interrupt_enable_ = 0; int interrupt_pending_ = 0; int interrupt_mask_ = 0; int interrupt_in_service_ = 0; bool interrupt_line_ = false; uint8_t interrupt_vector_ = 0; enum Interrupt { GPIP0 = (1 << 0), GPIP1 = (1 << 1), GPIP2 = (1 << 2), GPIP3 = (1 << 3), TimerD = (1 << 4), TimerC = (1 << 5), GPIP4 = (1 << 6), GPIP5 = (1 << 7), TimerB = (1 << 8), TransmitError = (1 << 9), TransmitBufferEmpty = (1 << 10), ReceiveError = (1 << 11), ReceiveBufferFull = (1 << 12), TimerA = (1 << 13), GPIP6 = (1 << 14), GPIP7 = (1 << 15), }; void begin_interrupts(int interrupt); void end_interrupts(int interrupt); void update_interrupts(); }; } } #endif /* MFP68901_hpp */