(address, count)
| 43 | return (buffer[0] << 8) | buffer[1]; |
| 44 | } |
| 45 | readBytes(address, count) { |
| 46 | this.write(address); |
| 47 | return this.read(count); |
| 48 | } |
| 49 | twoCompl(value) { |
| 50 | if (value > 32767) { |
| 51 | value = -(65535 - value + 1); |
no test coverage detected