-
LANDSCAPE SOURCE
There is a makefile, two C sources and one ASM file he...
LANDSCAPE SOURCE
There is a makefile, two C sources and one ASM file here. As it should
always be, the ASM stuff contains the innermost pieces of code for the
effect, and also some other stuff related to low-level keyboard input.-LANDSCAPE SOURCE
There is a makefile, two C sources and one ASM file here. As it should
always be, the ASM stuff contains the innermost pieces of code for the
effect, and also some other stuff related to low-level keyboard input.
- 2022-10-23 22:55:03下载
- 积分:1
-
HexBinConverterAddIn
This is a small converter application which can convert between hexadecimal and binary. And it is for RadASM assembly ide
- 2018-09-21 14:19:02下载
- 积分:1
-
电动车从起跑线出发(车体不得超过起跑线),沿引导线到达B点。在“直道区”铺设的白纸下沿引导线埋有1~3块宽度为15cm、长度不等的薄铁片。电动车检测到薄铁片时需...
电动车从起跑线出发(车体不得超过起跑线),沿引导线到达B点。在“直道区”铺设的白纸下沿引导线埋有1~3块宽度为15cm、长度不等的薄铁片。电动车检测到薄铁片时需立即发出声光指示信息,并实时存储、显示在“直道区”检测到的薄铁片数目。
(2)电动车到达B点以后进入“弯道区”,沿圆弧引导线到达C点(也可脱离圆弧引导线到达C点)。C点下埋有边长为15cm的正方形薄铁片,要求电动车到达C点检测到薄铁片后在C点处停车5秒,停车期间发出断续的声光信息。
(3)电动车在光源的引导下,通过障碍区进入停车区并到达车库。电动车必须在两个障碍物之间通过且不得与其接触。
(4)电动车完成上述任务后应立即停车,但全程行驶时间不能大于90秒,行驶时间达到90秒时必须立即自动停车。
-err
- 2022-11-25 12:50:08下载
- 积分:1
-
本程序是数字钟的单片机汇编程序,可供大家参考。
本程序是数字钟的单片机汇编程序,可供大家参考。-This procedure is the single-chip digital clock assembler for your reference.
- 2022-01-26 05:43:20下载
- 积分:1
-
挂接WH_CALLWNDPROC(WM_IME_COMPOSITION),WH_GETMESSAGE(WM_CHAR和WM_KEYUP),前者记录中文,后者记特...
挂接WH_CALLWNDPROC(WM_IME_COMPOSITION),WH_GETMESSAGE(WM_CHAR和WM_KEYUP),前者记录中文,后者记特殊按键和字母符号.-articulated WH_CALLWNDPROC (WM_IME_COMPOSITION) , WH_GETMESSAGE (WM_CHAR and WM_KEYUP), the former Chinese records, the latter in mind the special keys and alphabet symbols.
- 2022-05-19 04:07:23下载
- 积分:1
-
6. Electronic advertising (8X8) display, digital tube display 5 words
6.电子广告(8X8)显示屏,数码管上显示5的字样-6. Electronic advertising (8X8) display, digital tube display 5 words
- 2022-11-16 13:20:03下载
- 积分:1
-
基于51的数字时钟汇编设计,最基础的部分,采用动态显示。
基于51的数字时钟汇编设计,最基础的部分,采用动态显示。-Based on 51 digital clock assembly design, the most basic part of the dynamic display.
- 2023-03-05 03:50:04下载
- 积分:1
-
钢琴模拟发声 汇编语言编写
钢琴模拟发声 汇编语言编写-Piano simulation audible language compilation
- 2022-10-13 07:20:03下载
- 积分:1
-
Assembler series of characters from the keyboard and then press the lowercase le...
汇编程序从键盘输入一系列字符,然后按小写字母、数字字符和其他字符分类计数,最-Assembler series of characters from the keyboard and then press the lowercase letters, numbers, characters and other characters were counted, the most
- 2022-08-21 19:06:29下载
- 积分: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