-
A 2D game engine design a complete document, can learn about the algorithms and...
一个2D游戏引擎设计的完整文档,可以学习一下关于算法及流程方面的内容-A 2D game engine design a complete document, can learn about the algorithms and processes the contents of
- 2022-08-15 05:40:31下载
- 积分:1
-
the development of GDB
GNU开发手册,使用GDB进行Linux程序调适的方法介绍!!!值得一看的手册-the development of GDB
- 2023-05-28 04:40:04下载
- 积分:1
-
四位十进制频率计的源代码,详细,清楚地写出了设计语句
四位十进制频率计的源代码,详细,清楚地写出了设计语句-four decimal frequency of the source code, detailed and clearly written into the design statement
- 2022-01-21 22:17:48下载
- 积分:1
-
这是清华大学计算机系的C++课程PPT讲稿,非常好
这是清华大学计算机系的C++课程PPT讲稿,非常好-This is the Tsinghua University Department of Computer Science of the C++ programs PPT script, very good! ! !
- 2022-06-12 16:50:21下载
- 积分:1
-
VC Development Technology Encyclopedia CD
VC开发技术大全光盘使用说明
VC开发技术大全光盘使用说明-VC Development Technology Encyclopedia CD-ROM technology for use VC Encyclopedia CD-ROM for use
- 2022-12-03 19:05:08下载
- 积分:1
-
讲述oracle的pl sql的教程
讲述oracle的pl sql的教程-about the pl sql tutorials
- 2022-11-01 12:25:04下载
- 积分:1
-
The JDO development discipline
The JDO development discipline
- 2022-02-03 17:18:29下载
- 积分:1
-
经典的《自适应滤波器原理》里面第4章,图形的matlab仿真源代码。...
经典的《自适应滤波器原理》里面第4章,图形的matlab仿真源代码。-classic "adaptive filter theory," A Chapter 4, graphics Matlab simulation source code.
- 2022-07-07 22:07:47下载
- 积分:1
-
Accounting Information
Accounting Information
- 2022-06-21 19:22:41下载
- 积分:1
-
时钟闪烁移动
#include"reg51.h"
sbit SET_K = P1^0; //设置
sbit PLUS_K = P1^1;//左移加1
sbit SHIFT_K = P1^2;//左移
sbit CHANGE_K = P1^3;//切换 年、月、日
bit SecFlag = 0;
bit FlashFlag = 0;
unsigned int Counter = 0;
unsigned char Led0,Led1,Led2,Led3,Led4;
unsigned char Shift;
code unsigned char LedSeg[10] = {0x3f,0x06,0x5B,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
void Time0() interrupt 1 // 0: EX0 1:Time0 2: EX1 3: Time1,4:serial 中断
{
static unsigned int IntCnt;
TH0 = 0xfc;
TL0 = 0x66;
if(++IntCnt > 1000)
{
IntCnt = 0;
SecFlag = 1;
}
switch(++Counter%5) //显示功能
{
case 0:
- 2022-03-02 21:20:39下载
- 积分:1