(...args)
| 150 | return this.readUint16(...args); |
| 151 | } |
| 152 | writeWord(...args) { |
| 153 | trace("writeWord renamed to writeUint16\n"); |
| 154 | this.writeUint16(...args); |
| 155 | } |
| 156 | readBlock(register, buffer) { |
| 157 | trace("readBlock renamed to readBuffer\n"); |
| 158 | return this.readBuffer(register, buffer); |
nothing calls this directly
no test coverage detected