(self, nb, proc, thread)
| 64 | ## Arguments Helper (need to move this elsewhere) |
| 65 | class X86ArgumentRetriever(object): |
| 66 | def get_arg(self, nb, proc, thread): |
| 67 | return proc.read_dword(thread.context.sp + 4 + (4 * nb)) |
| 68 | |
| 69 | def set_arg(self, nb, value, proc, thread): |
| 70 | return proc.write_dword(thread.context.sp + 4 + (4 * nb), value) |
no test coverage detected