git-svn-id: http://moon:8086/svn/software/trunk/projects/FsTrack@357 b431acfa-c32f-4a4a-93f1-934dc6c82436
23 lines
315 B
C
23 lines
315 B
C
/*
|
|
* File: memdump.h
|
|
* Author: jens
|
|
*
|
|
* Created on 1. Februar 2015, 09:09
|
|
*/
|
|
|
|
#ifndef MEMDUMP_H
|
|
#define MEMDUMP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void memdump(uint8_t *pBuf, uint32_t base, int num_bytes_per_row, int len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MEMDUMP_H */
|
|
|