-
最新的词法分析器啊,最新版的,里面包括了识别c的关键字的。...
最新的词法分析器啊,最新版的,里面包括了识别c的关键字的。-Ah latest lexical analyzer, the latest version, which includes the identification of keywords c.
- 2022-05-18 01:02:36下载
- 积分:1
-
个人电脑组装材料
PC汇编资料大全-PC assembly material greatly entire
- 2022-03-14 15:07:08下载
- 积分:1
-
用汇编做的简单的打砖块游戏,在13h号图形方式下运行,源码大小为10k...
用汇编做的简单的打砖块游戏,在13h号图形方式下运行,源码大小为10k-a small game written in asm , which calls interrupt 13h to run under graphic mode , the code is less than 10k
- 2022-07-19 02:23:39下载
- 积分:1
-
可编程并行接口实验源程序,通过此实验可掌握8255方式0的工作原理及使用方法。编程从8255C口输入数据,再从A口输出...
可编程并行接口实验源程序,通过此实验可掌握8255方式0的工作原理及使用方法。编程从8255C口输入数据,再从A口输出-procedure for a programmable parallel interface experiment source, the passage of this experiment can seize 8,255 0 means the working principle and methods of use. Programming from the 8255C I input data, from A mouth output.
- 2022-03-18 08:29:16下载
- 积分:1
-
show 80X86 register
显示80X86的寄存器-show 80X86 register
- 2022-07-18 18:29:14下载
- 积分:1
-
汇编小程序 多种方法解冒泡法排序
以masm 5.0以上版本编译运行...
汇编小程序 多种方法解冒泡法排序
以masm 5.0以上版本编译运行 -small compilation method for a variety of procedures Bubble Act to masm ranking above version 5.0 compiler operation
- 2022-03-03 23:00:00下载
- 积分:1
-
用单片机制作的高精度计数器,验证通过,适用于计数场合。...
用单片机制作的高精度计数器,验证通过,适用于计数场合。-Produced using high-precision single-chip counters, authentication is passed, apply to count occasions.
- 2022-11-01 23:40:03下载
- 积分:1
-
#include <iostream>
#include <stack>
#define MAX_SIZE...
非递归的快速排序算法-#include
#include
#define MAX_SIZE 11
using namespace std
typedef int elem
typedef std::stack Stack
int partition(elem*pData, int low, int high)
void swap(elem& a, elem& b)
void qsort(elem* pData, int low, int high)
int partition(elem*pData, int low, int high)
{
elem key = pData[low]
while(low < high)
{
while(low < high && pData[high] >= key)
high--
swap(pData[low], pData[high])
while(low < high && pData[low]
- 2022-05-08 16:41:43下载
- 积分:1
-
这个文件是从程序员天堂下载的
This file were downloaded from the Programmers Heaven CD-Rom.
-This file were downloaded from the Program mers Heaven CD-Rom.
- 2022-08-26 02:56:14下载
- 积分:1
-
基于Intel 8253定时器的两端Asm,包括配套电路,流程图
1。设计基于ISA总线的Intel 8253 的接口电路,用Intel 8...
基于Intel 8253定时器的两端Asm,包括配套电路,流程图
1。设计基于ISA总线的Intel 8253 的接口电路,用Intel 8253 的1个通道作定时器,演奏C调的各个音符,利用查表程序的方法依次演奏,每个音符演奏1s,停0.5s 演奏三遍后退出程序
2。利用Intel 8253的一个通道产生一个100Hz的方波,用示波器测试信号的正确性
以产生的方波作为另一个通道门控信号。利用此通道测量其高电平的宽度,在PC机显示屏上显示其数值并退出程序
-based on the Intel 8253 timer at both ends of programmers, including matching circuit, flowchart
- 2022-02-04 23:32:16下载
- 积分:1