(addr uint16, value uint16)
| 71 | } |
| 72 | |
| 73 | func (c *SimpleComputer) loadToRAM(addr uint16, value uint16) { |
| 74 | c.putValueInRAM(addr, value) |
| 75 | } |
| 76 | |
| 77 | func (c *SimpleComputer) putValueInRAM(address, value uint16) { |
| 78 | c.memory.AddressRegister.Set() |
no test coverage detected