clarify
This commit is contained in:
parent
1e07747c6e
commit
9235698c79
1 changed files with 9 additions and 1 deletions
10
README.md
10
README.md
|
|
@ -16,12 +16,20 @@ The code here builds towards addressing these problems.
|
||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This builds `a.out-stripped`, which contains enough information for minidump.
|
||||||
|
|
||||||
## Running Minidump
|
## Running Minidump
|
||||||
|
|
||||||
```
|
```
|
||||||
py/minidump.py
|
$ py/minidump.py
|
||||||
|
@0000: Load 2906 bytes starting at 4096
|
||||||
|
shared_mem @ 0x0b7c 0x0400 bytes
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This shows the amount of code (& initialized data) to be loaded from a.out-stripped, and at what offset within a.out-stripped that data comes.
|
||||||
|
|
||||||
|
Then, it shows the size and offset in ULP memory of the symbol `shared_mem`.
|
||||||
|
|
||||||
## Using
|
## Using
|
||||||
In principle, you now use a wrapper around `minielf` to (A) load the Coproc
|
In principle, you now use a wrapper around `minielf` to (A) load the Coproc
|
||||||
binary and (B) to find symbols within the CoprocMemory.
|
binary and (B) to find symbols within the CoprocMemory.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue