(addr)
| 321 | |
| 322 | // returns a pointer instead of an Int |
| 323 | readp(addr) { |
| 324 | this.set_addr(addr); |
| 325 | const worker = this._worker; |
| 326 | return new Addr(worker.getUint32(0, true), worker.getUint32(4, true)); |
| 327 | } |
| 328 | |
| 329 | read8_at(offset) { |
| 330 | if (!isInteger(offset)) { |