ovlogo.c
来自「汇编语言编的关于ov143b.asm的小程序」· C语言 代码 · 共 32 行
C
32 行
/* 007 24-May-87 ovlogo.c
Copyright (c) 1987 by Blue Sky Software. All rights reserved.
*/
#include "ov.h"
#include "direct.h"
extern char version[], logo[][76];
ovlogo() { /* display the initial signon screen w/logo */
int i;
for (i = 0; i < 8; i++) /* display the logo lines */
disp_str_at(logo[i],2+i,3);
disp_str_at(version,12,(SCREEN_COLS >> 1)-(strlen(version) >> 1));
setvattrib(DIS_HIGH);
disp_str_at(" Press any key to continue ",14,26);
setvattrib(DIS_NORM);
disp_str_at(" James Mathews ",17,27);
disp_str_at(" Blue Sky Software ",18,27);
disp_str_at(" 172 Manor Drive ",19,27);
disp_str_at(" Absecon, NJ 08201 ",20,27);
disp_str_at(" Copyright (c) 1986,1987 Blue Sky Software. All rights reserved. ",
23,6);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?