mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
24b3faa427
Adjusts the Oric, Vic-20 and C-1540 accordingly, albeit with the quickest possible solutions.
20 lines
453 B
C++
20 lines
453 B
C++
//
|
|
// IRQDelegatePortHandler.cpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/09/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#include "../6522.hpp"
|
|
|
|
using namespace MOS::MOS6522;
|
|
|
|
void IRQDelegatePortHandler::set_interrupt_delegate(Delegate *delegate) {
|
|
delegate_ = delegate;
|
|
}
|
|
|
|
void IRQDelegatePortHandler::set_interrupt_status(bool new_status) {
|
|
if(delegate_) delegate_->mos6522_did_change_interrupt_status(this);
|
|
}
|