mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
20 lines
450 B
C++
20 lines
450 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);
|
|
}
|