📄 table.c
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -