(state bool)
| 839 | } |
| 840 | |
| 841 | func (c *CPU) runSetOnMAR(state bool) { |
| 842 | c.marSetORGate.Update( |
| 843 | c.stepper.GetOutputWire(0), |
| 844 | c.step4Gates[3].Output(), |
| 845 | c.step4Gates[6].Output(), |
| 846 | c.step4Gates[1].Output(), |
| 847 | c.step4Gates[2].Output(), |
| 848 | c.step4Gates[5].Output(), |
| 849 | ) |
| 850 | c.marSetANDGate.Update(state, c.marSetORGate.Output()) |
| 851 | updateSetStatus(&c.memory.AddressRegister, c.marSetANDGate.Output()) |
| 852 | } |
| 853 | |
| 854 | func (c *CPU) runSetOnIAR(state bool) { |
| 855 | c.iarSetORGate.Update( |
no test coverage detected