#ifndef __TRAP_H__ #define __TRAP_H__ #include #include #include __attribute__((noinline)) void nemu_assert(bool cond) { if (!cond) halt(1); } #endif