blob: f3fc5e4266d90ec79d4fd3eba393e9ac9f5aac13 [file] [log] [blame]
Fabio Utzig57c40f72017-12-12 21:48:30 -02001#ifndef H_BOOTSIM_
2#define H_BOOTSIM_
3
4void sim_assert(int, const char *test, const char *, unsigned int, const char *);
5#define ASSERT(x) sim_assert((x), #x, __FILE__, __LINE__, __func__)
6
7#endif