write a byte at ``addr``
(self, addr, byte)
| 393 | return bytearray(res).decode("utf-16") |
| 394 | |
| 395 | def write_byte(self, addr, byte): |
| 396 | """write a byte at ``addr``""" |
| 397 | return self.write_memory(addr, struct.pack("<B", byte)) |
| 398 | |
| 399 | def write_short(self, addr, word): |
| 400 | """write a word at ``addr``""" |
nothing calls this directly
no test coverage detected