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

📄 sync.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/*	sync.c	4.1	83/03/09	*//* * Make the screen & screen mode look like what it's supposed to. * * There are two basic things to do here, put the _pen * in the right place, and make the line drawing mode be right. * We don't sync the cursor here, only when there's user input & it's on. */#include "2648.h"sync(){	if (_supx != _penx || _supy != _peny) {		escseq(ESCP);		outchar('a');		motion(_supx, _supy);	}	if (_supsmode != _actsmode) {		escseq(ESCM);		switch (_actsmode = _supsmode) {		case MX:			outchar('3');			break;		case MC:			outchar('1');			break;		case MS:			outchar('2');			break;		}		outchar('a');	}}

⌨️ 快捷键说明

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