vinfo.c

来自「详细介绍了一篇关于pci开发的接口芯片」· C语言 代码 · 共 22 行

C
22
字号
/*  CXL - Copyright (c) 1987-1989 by Mike Smedley - All Rights Reserved  */
/*  VINFO.C     - contains video information record  */

#include "cxldef.h"
#include "cxlvid.h"

struct _vinfo_t _Near _Cdecl _vinfo=
{
    0xb800,  /* video buffer segment address */
    V_CGA,   /* video adapter type           */
    25,      /* number of displayed rows     */
    80,      /* number of displayed columns  */
    8,       /* character height in pixels   */
    8,       /* character width  in pixels   */
    NO,      /* is it a monochrome adapter?  */
    NO,      /* map color attribs to mono?   */
    NO,      /* is CGA snow present?         */
    NO,      /* use BIOS for video writes?   */
    YES,     /* check for DESQview?          */
    NO       /* is DESQview present?         */
};

⌨️ 快捷键说明

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