14 lines
181 B
C
14 lines
181 B
C
|
#ifndef __TRAP_H__
|
||
|
#define __TRAP_H__
|
||
|
|
||
|
#include <am.h>
|
||
|
#include <klib.h>
|
||
|
#include <klib-macros.h>
|
||
|
|
||
|
__attribute__((noinline))
|
||
|
void check(bool cond) {
|
||
|
if (!cond) halt(1);
|
||
|
}
|
||
|
|
||
|
#endif
|