⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assert.hh

📁 一个mips虚拟机非常好代码,使用C++来编写的,希望大家多学学,
💻 HH
字号:
#ifndef assert_hh_included#define assert_hh_included#include <assert.h>// Some simple assertion support.  The intent is to call assert() with// assert(TODO) or assert(UNREACHABLE) instead of just assert(0), to make the// assertion message meaningful.#define TODO 0#define UNREACHABLE 0// A simple printf-debugging macro ;)#ifdef NDEBUG# define dump SYNTAX_ERROR#else# include <stdio.h># define dump printf#endif#endif // assert_hh_included

⌨️ 快捷键说明

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