table.c

来自「坦尼保姆」· C语言 代码 · 共 20 行

C
20
字号
#define EXTERN#include "88.h"/* Most PDP-11 compilers refuse to compile arrays that exceed 32K bytes. * To get around this defect, the array m is split up into two pieces. * The only way to have the loader put the two parts contiguously in memory * is to partially initialize each. */#ifdef pdpchar m[HALFMEM] = {0};char mx[HALFMEM] = {0};#elsechar m[MEMBYTES];#endifREG r;/* union{unchar rc[16]; word rw[8];}r;      /* AX,BX,CX,DX,SI,DI,BP,SP */

⌨️ 快捷键说明

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