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

📄 bootblk.h

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 H
字号:
/* *	@(#)bootblk.h	4.1	(ULTRIX)	7/2/90 * * Define a bootblock.  The boot block always resides on block zero of the * partition if a disk, or the first block of a tape. */struct bootblock{  int reserved[2];  int magic;               /* Must contain magic number for boot block */  int type;                /* Boot type. */  union{    struct{      unsigned ladr;         /* Load address. */      unsigned sadr;         /* Start address. */      int      bcnt;         /* Block count. */      int      sblk;         /* Starting block.  Usually this block. */    } bb0;    struct{      unsigned ladr;         /* Load address. */      unsigned sadr;         /* Start address. */      struct{	int cnt;             /* Blocks in a span. */	int blk;             /* Starting block of span */      } spans[1];            /* Any number of spans, terminated by zero cnt.*/    } bb1;  } bb;};#define BB_MAGIC    161146#define BB_CONTIGUOUS      0#define BB_SCATTERED       1

⌨️ 快捷键说明

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