write a word at ``addr``
(self, addr, word)
| 397 | return self.write_memory(addr, struct.pack("<B", byte)) |
| 398 | |
| 399 | def write_short(self, addr, word): |
| 400 | """write a word at ``addr``""" |
| 401 | return self.write_memory(addr, struct.pack("<H", word)) |
| 402 | |
| 403 | def write_dword(self, addr, dword): |
| 404 | """write a dword at ``addr``""" |
nothing calls this directly
no test coverage detected