Initial attempt at guessing engine structure
This commit is contained in:
commit
bcef2641cc
7 changed files with 564 additions and 0 deletions
8
hex-dump.h
Normal file
8
hex-dump.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
// Usage:
|
||||
// hexDump(desc, addr, len, perLine);
|
||||
// desc: if non-NULL, printed as a description before hex dump.
|
||||
// addr: the address to start dumping from.
|
||||
// len: the number of bytes to dump.
|
||||
// perLine: number of bytes on each output line.
|
||||
|
||||
void hexDump(const char * desc, const void * addr, const int len, int perLine);
|
Loading…
Add table
Add a link
Reference in a new issue