1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-09-25 08:25:09 +00:00

The 1540 and, by extension, the Vic-20 are now activity sources.

This commit is contained in:
Thomas Harte
2018-05-11 22:24:33 -04:00
parent c23f6d8d19
commit bc464e247f
5 changed files with 42 additions and 12 deletions

View File

@@ -145,6 +145,10 @@ template <typename T> uint8_t MOS6522<T>::get_port_input(Port port, uint8_t outp
return (input & ~output_mask) | (output & output_mask);
}
template <typename T> T &MOS6522<T>::bus_handler() {
return bus_handler_;
}
// Delegate and communications
template <typename T> void MOS6522<T>::reevaluate_interrupts() {
bool new_interrupt_status = get_interrupt_line();