mirror of
				https://github.com/TomHarte/CLK.git
				synced 2025-10-31 05:16:08 +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);
 | |
| }
 |