-
learning Chapter IV compiler theory
学习编译原理 第四章-learning Chapter IV compiler theory
- 2022-06-03 03:32:35下载
- 积分:1
-
此资料源于电子科大教程(VC++),本人看了一遍感觉蛮好的,值得大家学习!...
此资料源于电子科大教程(VC++),本人看了一遍感觉蛮好的,值得大家学习!-This information was taken from UESTC Tutorial (VC++), I watched it again feels just fine, and worth learning!
- 2023-06-10 13:20:04下载
- 积分:1
-
三维计算机图形,包括很多与OpenGL上下文
3d图形学的一本电子书,内容涵盖了有关三地方面的很多问题-3d computer graphics, included a lot of context related to openGl
- 2023-03-30 04:10:04下载
- 积分:1
-
《Java2核心技术卷II》配套源码,打包成rar 文件格式并且含有源码,使用非常方便...
《Java2核心技术卷II》配套源码,打包成rar 文件格式并且含有源码,使用非常方便-"Java2 core technology Volume II" complementary source, packing into rar files containing source and is extremely easy to use
- 2022-03-18 10:56:14下载
- 积分:1
-
BCB入门教程,想学bcb的一个不错的东东!~
BCB入门教程,想学bcb的一个不错的东东!~-BCB entry guide, moreover, like a good Dong! ~.
- 2023-08-22 15:00:03下载
- 积分:1
-
With regard to optimization of the 0.618 law, matlab program, compiled by
关于最优化方法的0.618法的matlab程序,编译通过-With regard to optimization of the 0.618 law, matlab program, compiled by
- 2022-03-18 09:07:25下载
- 积分:1
-
Chinese called : windows device driver technology insider detailed description o...
中文名为:windows设备驱动程序技术内幕
详细介绍了设备驱动的原理和实现方法,并列举了大量的实例方便大家学习-Chinese called : windows device driver technology insider detailed description of the device-driven principles and methods He cited a number of examples to facilitate learning
- 2023-08-20 17:25:05下载
- 积分:1
-
这是一个有关MOBILE 关有EAK2的操作
这是一个有关MOBILE 关有EAK2的操作-This is a MOBILE clearance operation has EAK2
- 2022-02-07 20:57:59下载
- 积分:1
-
pSOS some of the information, but also good
pSOS的一些资料,还不错-pSOS some of the information, but also good
- 2022-07-20 13:33:37下载
- 积分: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