-
GCC生成的stab调试信息说明,这些信息可以帮助从程序以外窥测程序的接口而不需要任何的头文件...
GCC生成的stab调试信息说明,这些信息可以帮助从程序以外窥测程序的接口而不需要任何的头文件-GCC generated stab debugging information shows that This information can help the process from the outside monitor both the interface procedures without the need for any of the headers
- 2023-03-05 03:10:03下载
- 积分:1
-
WinApi.rar
WinApi.rar
- 2022-02-19 22:15:22下载
- 积分:1
-
C++的艺术
The Art of C++
by Herbert Schildt ISBN:0072255129
McGraw-Hill/Osborne © 2004
The author of this text applies C++ to a wide variety of high-powered, practical applications, each focusing on a different aspect of the language. Examples range from a garbage collector subsystem and a thread control panel to AI-based searches and more.
-The Art of C by Herbert Schildt ISBN : 0072255129 McGraw-Hill/Osborne
- 2022-10-21 15:25:06下载
- 积分:1
-
这本书不错,推荐
这本书不错,推荐-this book is true that recommended
- 2022-03-20 22:23:50下载
- 积分:1
-
电脑编程技巧和源码。很不错的。
电脑编程技巧和源码。很不错的。-computer programming skills and source code. Very good.
- 2022-08-10 10:26:31下载
- 积分:1
-
红牛开发板STM32原理图很不错啊带2.8触摸屏接口
红牛开发板STM32原理图很不错啊带2.8触摸屏接口-Red Bull STM32 development board schematic diagram is very Cuoa with 2.8 Touch Screen Interface
- 2022-10-13 06:25:03下载
- 积分:1
-
thinking (third edition), PDF+ CHM and English, is a good thing depends on your...
java编程思想(第三版) ,PDF+CHM,英文版的 ,很不错的东西,就看大家的英文实力了-thinking (third edition), PDF+ CHM and English, is a good thing depends on your strength of the English
- 2022-07-19 18:30:03下载
- 积分:1
-
然而,这本书值得被广受好评。
这本书,然而,值得称赞为一般方面的权威性书籍
- 2022-03-05 04:30:54下载
- 积分:1
-
001003.rar
001003.rar
- 2022-03-17 07:09:07下载
- 积分: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