Added dumper library

This commit is contained in:
Alex
2022-11-03 03:15:27 +02:00
parent 06c217fdcc
commit b809cab953
2 changed files with 69 additions and 0 deletions

8
include/dumper.hpp Normal file
View File

@ -0,0 +1,8 @@
#ifndef __FENNIX_LIB_DUMPER_H__
#define __FENNIX_LIB_DUMPER_H__
#include <types.h>
void DumpData(const char *Description, void *Address, unsigned long Length);
#endif // !__FENNIX_LIB_DUMPER_H__