assert.c

来自「Hermit-at-1.1.3,一款bootloader」· C语言 代码 · 共 14 行

C
14
字号
/* * Copyright (c) 2000 Blue Mug, Inc.  All Rights Reserved. */#include <target/assert.h>#include <target/io.h>void do_assert(const char *assertion, const char *file, int line){	hprintf("-NG assertion failure at %s:%d: %s\n", file, line, assertion);	while(1);	/* time to reboot */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?