dumpulator
                                
                                
                                
                                    dumpulator copied to clipboard
                            
                            
                            
                        Implement a memory manager
Currently there is no information about the mapped memory regions available. There should be a robust system to manage memory and allow syscalls to use it for memory queries:
dp.mem_protect(addr, size, Memory.ReadWrite)
info = dp.mem_find(addr)
dp.mem_allocate(size, addr=None)
dp.mem_free(addr)