Skip to content

Commit

Permalink
Merge pull request #45 from ckudera/master
Browse files Browse the repository at this point in the history
Update memory.md
  • Loading branch information
xwings committed Oct 25, 2022
2 parents 3f88d46 + d4e44fc commit 566ed73
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,13 @@ ql.mem.string(address, "stringwith")

### Show all the mapped area
```python
ql.mem.show_mapinfo()
ql.mem.get_formatted_mapinfo()
```

Example:
```python
for info_line in self.ql.mem.get_formatted_mapinfo():
self.ql.log.error(info_line)
```

### find a free space
Expand Down

0 comments on commit 566ed73

Please sign in to comment.