(value byte)
| 791 | } |
| 792 | |
| 793 | func (d *DMC) writeControl(value byte) { |
| 794 | d.irq = value&0x80 == 0x80 |
| 795 | d.loop = value&0x40 == 0x40 |
| 796 | d.tickPeriod = dmcTable[value&0x0F] |
| 797 | } |
| 798 | |
| 799 | func (d *DMC) writeValue(value byte) { |
| 800 | d.value = value & 0x7F |
nothing calls this directly
no outgoing calls
no test coverage detected