代码搜索结果
找到约 10,000 项符合
Display 的代码
display.lst
C51 COMPILER V7.06 DISPLAY 12/06/2007 09:43:12 PAGE 1
C51 COMPILER V7.06, COMPILATION OF MODULE DISPLAY
OBJECT MODULE PLACED IN
display.c
/*****************************************************
激情创造,精彩无限-------欢迎进入单片机的世界
*****************************************************/
/*****************************************************
程序说明
display.plg
礦ision2 Build Log
Project:
F:\zj\实验2\display\display.uv2
Project File Date: 11/13/2007
Output:
Build target 'Target 1'
assembling main.asm...
display.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {
display.c
/*
** display.c
**
** Contains routines to display the board.
**
** Written by Peter Sutton - October 2004.
*/
#include "terminalio.h"
#include "display.h"
#include "board.h"
#include "sco
display.h
/*
** display.h
**
** Written by Peter Sutton - October 2004
**
*/
/*
** Initialise the screen and draw a border around where the pieces
** will fall. Serial IO must be initialised before
display.c
#include "public.h"
void display(void)
{
//做成7x5
make7_5text(m_RecData.cDirect);
//做成7x11
make7_11text();
//滚动
movetext();
//显示
showtext();