1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 01:57:54 +00:00

Reenables interrupts.

This commit is contained in:
Thomas Harte 2021-03-06 18:53:39 -05:00
parent 26ad760904
commit 7b164de6fd

View File

@ -1047,8 +1047,8 @@ class ConcreteMachine:
void update_interrupts() { void update_interrupts() {
// Update the interrupt line. // Update the interrupt line.
// TODO: are there other interrupt sources? // TODO: add ADB controller as event source.
// m65816_.set_irq_line(video_.last_valid()->get_interrupt_line() || sound_glu_.get_interrupt_line()); m65816_.set_irq_line(video_.last_valid()->get_interrupt_line() || sound_glu_.get_interrupt_line());
} }
// MARK: - Input. // MARK: - Input.