Initial attempt at guessing engine structure

This commit is contained in:
Spotlight 2023-09-19 09:58:43 -05:00
commit bcef2641cc
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
7 changed files with 564 additions and 0 deletions

8
hex-dump.h Normal file
View 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);