mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-15 05:31:30 +00:00
Ensure data bus is 0xff during interrupts.
This commit is contained in:
parent
99a65d3297
commit
1ec8ff20af
@ -333,6 +333,10 @@ template <bool has_disk_controller> class ConcreteMachine:
|
|||||||
switch(cycle.operation) {
|
switch(cycle.operation) {
|
||||||
default: break;
|
default: break;
|
||||||
|
|
||||||
|
case PartialMachineCycle::Interrupt:
|
||||||
|
*cycle.value = 0xff;
|
||||||
|
break;
|
||||||
|
|
||||||
case PartialMachineCycle::Input:
|
case PartialMachineCycle::Input:
|
||||||
switch(address & 0xff) {
|
switch(address & 0xff) {
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user