代码搜索结果
找到约 10,000 项符合
8 的代码
c8-8.h
// c8-8.h 双链键树的存储结构。在教科书第248页
typedef struct DLTNode // 双链树类型
{ char symbol; // 关键字符
DLTNode *next; // 指向右兄弟结点的指针
NodeKind kind; // 结点种类
union // 共用体
{ Record *infoptr; // 叶子结点的记录
font8_8.h
/****************************************************************************************
* 文件名:FONT8_8.H
* 功能:8*8 ASCII码字体显示函数。(头文件)
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
font8_8.c
/****************************************************************************************
* 文件名:FONT8_8.C
* 功能:8*8 ASCII码字体及显示函数。
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。
****
ex8_8.mdl
Model {
Name "ex7_9"
Version 2.09
SimParamPage Solver
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
PaperOrientation landscape
prog8_8.asm
sseg segment stack
dw 100 dup(?)
sseg ends
cseg segment
assume cs:cseg,ss:sseg
printo proc far
cli
push es
push di
push ds
push
font8_8.h
/****************************************************************************************
* 文件名:FONT8_8.H
* 功能:8*8 ASCII码字体显示函数。(头文件)
* 作者:黄绍斌
* 日期:2004.02.26
* 备注:使用GUI_SetColor()函数设置前景颜色及背景色。