diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-05-24 16:48:22 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-05-25 21:57:14 +0200 |
commit | 31c69b6ca1b91e7fd9fd8e14082fd2584c5f538c (patch) | |
tree | 16e789c7d68608831b498f41f54d9482b82a711a /include/log.h |
first public release
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'include/log.h')
-rw-r--r-- | include/log.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h new file mode 100644 index 0000000..df4e820 --- /dev/null +++ b/include/log.h @@ -0,0 +1,24 @@ +#ifndef LOG +#define LOG + +#ifdef _DEBUG +#define EMBED_BREAKPOINT \ + __asm volatile("nop; int3; nop;") +#else +#define EMBED_BREAKPOINT +#endif + +#if defined(_DEBUG) || defined(_PRE_RELEASE) +#define LOG_MARKER { COMPAT(printf)("%s.%d: Marker!\n", __FILE__, __LINE__); } +#define PRINT_BYTES(buf, siz, delim) \ + { \ + char* result = __xbintostr(buf, siz, delim); \ + puts(result); \ + COMPAT(free)(result); \ + } +#else +#define LOG_MARKER {} +#define PRINT_BYTES(x,y,z) {} +#endif + +#endif // LOG_H |