(state bool)
| 702 | } |
| 703 | |
| 704 | func (c *CPU) runEnable(state bool) { |
| 705 | c.runEnableOnIO(state) |
| 706 | c.runEnableOnIAR(state) |
| 707 | c.runEnableOnBusOne(state) |
| 708 | c.runEnableOnACC(state) |
| 709 | c.runEnableOnRAM(state) |
| 710 | c.runEnableOnRegisterB() |
| 711 | c.runEnableOnRegisterA() |
| 712 | c.runEnableGeneralPurposeRegisters(state) |
| 713 | } |
| 714 | |
| 715 | func (c *CPU) runEnableOnIO(state bool) { |
| 716 | c.ioBusEnableGate.Update(state, c.step5Gate3And.Output()) |
no test coverage detected