write a dword at ``addr``
(self, addr, dword)
| 401 | return self.write_memory(addr, struct.pack("<H", word)) |
| 402 | |
| 403 | def write_dword(self, addr, dword): |
| 404 | """write a dword at ``addr``""" |
| 405 | return self.write_memory(addr, struct.pack("<I", dword)) |
| 406 | |
| 407 | def write_qword(self, addr, qword): |
| 408 | """write a qword at ``addr``""" |
no test coverage detected