File:  [Isaki's NoNo m68k/m88k emulator] / nono / lib / nono.h
Revision 1.1.1.8 (vendor branch): download - view: text, annotated - select for diffs
Wed Apr 29 17:05:57 2026 UTC (2 months, 3 weeks ago) by root
Branches: MAIN, Isaki
CVS tags: v027, HEAD
nono 1.7.0

//
// nono
// Copyright (C) 2020 nono project
// Licensed under nono-license.txt
//

//
// nono の基本ヘッダ
//

#pragma once

#include "header.h"

#define NONO_MAJOR_VER	(1)
#define NONO_MINOR_VER	(7)
#define NONO_PATCH_VER	(0)
#define NONO_DATE		"2026/03/28"

// パニック (PC を表示しない)
#define PANIC(...)	panic_func(__PRETTY_FUNCTION__, __VA_ARGS__)
[[noreturn]] extern void panic_func(const char *funcname, const char *fmt, ...)
	__printflike(2, 3);

// VM 用パニック (PC を表示する)
#define VMPANIC(...) vmpanic_func(__PRETTY_FUNCTION__, __VA_ARGS__)
[[noreturn]] extern void vmpanic_func(const char *funcname, const char *fmt,
	...) __printflike(2, 3);

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.