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

📄 host.h

📁 basic.c */ /**//* Project:NeuroBasic, basic package*//**/ /* Survey:This is a simple Basic b-code
💻 H
字号:
/****************************************************************//*								*//* Name:	host.h						*//*								*//* Project:	NeuroBasic					*//*								*//* Survey:	Definitions for the host part			*//*								*//* Author:	Urs Mueller					*//*		Electronics Laboratory, ETH Zuerich		*//*		Switzerland					*//*								*//* Created:	July 21, 1994					*//* Modified:	July 26, 1995 (um)				*//*								*//****************************************************************/#define VERSION "V3.0"/* name of Music executable */#define LOD_NAME	"/usr/ife/n0/flepp/nbasic_dev/mubasic.lod"	/* SN Matrix File Definitions *//******************************/#define SN_FMAGIC	0x1e3d4c51L#define SN_CMAGIC	0x1e3d4c52L#define SN_AMAGIC	".MAT"typedef struct{  long		sn_magic;	/* magic number */  long		sn_ndim;	/* number of dimensions (1..3) */  long		sn_xdim;	/* size in x dimension */  long		sn_ydim;	/* size in y dimension */  long		sn_zdim;	/* size in z dimension */} sn_mathead_t;			/* SN floating-point matrix header *//* global variables *//********************/extern char *compilation_date;

⌨️ 快捷键说明

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