Write bytes to a memory. Args: addr: destination address data: bytes to write
(self, addr: int, data: bytes)
| 381 | return _unpack(self.read(addr, size)) |
| 382 | |
| 383 | def write(self, addr: int, data: bytes) -> None: |
| 384 | """Write bytes to a memory. |
| 385 | |
| 386 | Args: |
| 387 | addr: destination address |
| 388 | data: bytes to write |
| 389 | """ |
| 390 | |
| 391 | self.ql.uc.mem_write(addr, data) |
| 392 | |
| 393 | def write_ptr(self, addr: int, value: int, size: int = 0, *, signed = False) -> None: |
| 394 | """Write an integer value to a memory address. |
no outgoing calls
no test coverage detected