rename nemu_assert to check

This commit is contained in:
Yanyan Jiang 2020-08-11 17:40:29 +00:00
parent 7e870cb2e4
commit 673f8605ce
33 changed files with 100 additions and 100 deletions

View file

@ -6,7 +6,7 @@
#include <klib-macros.h>
__attribute__((noinline))
void nemu_assert(bool cond) {
void check(bool cond) {
if (!cond) halt(1);
}