-
ASM 编的vxd又是一个绝不是重复的
ASM 编的vxd又是一个绝不是重复的-vxd ASM series is a repeat is not the
- 2022-01-24 18:09:00下载
- 积分:1
-
这是一个用PIC16F73 MCP2515的驱动程序、应用程序连接到PC通过…
This is an MCP2515 driver application using a PIC16F73, connected to the PC through the serial port.
In the firmware you can easily configure the MCP in TX, RX or LOOPBACK mode.
- 2022-08-24 10:20:55下载
- 积分:1
-
51 single
51单片机矩阵键盘扫描扫描之逐行扫描法.asm程序-51 single-chip scan matrix keyboard scanning method of progressive scan. Asm program
- 2022-01-26 08:31:50下载
- 积分:1
-
基于AT89S52单片机的频率计设计
一.显示年频率,周期,脉宽 三个功能二.在液晶显示器上显示上面三个功能的数值三.带掉电保护功能,掉电后,重新开机,显示先前对应参数测量值,按退出键,重新开始测量,否侧,先前存储到24C02里面的数据不更新电路描述: 一.芯片:AT89S52,液晶显示器LCD12684,脉冲信号发生器,示波器 二.行列式键盘键功能设置: 确认键:0x48(E); 功能选择键:0x28(D); 返回键:0x88(F)
- 2023-05-21 06:50:03下载
- 积分:1
-
小动画心
动画显示提示信息"按任意键进入",
然后就没有任何反映了,
不知道该怎么办了?...
小动画心
动画显示提示信息"按任意键进入",
然后就没有任何反映了,
不知道该怎么办了?-small animation heart animation shows a message "by Anykey enter," and then there would be no point to the fact that I do not know how the Office
- 2023-01-21 02:15:04下载
- 积分:1
-
StuMan学生成绩管理系统是一个使用MASM宏汇编语言开发的试验性项目。它实现了学生学号、姓名、三门课程成绩的录入、修改、删除以及总成绩计算、按成绩排序等功能...
StuMan学生成绩管理系统是一个使用MASM宏汇编语言开发的试验性项目。它实现了学生学号、姓名、三门课程成绩的录入、修改、删除以及总成绩计算、按成绩排序等功能,并且可以将数据保存为磁盘文件,便于再次打开编辑。
程序基于DOS或Windows命令行模式运行,全屏显示,使用简单的键盘命令进行操作。可处理100条(可扩充)以内的学生记录。在DOS汉字系统的支持下可正确处理中文信息。-StuMan student achievement management system is a MASM macro assembler language using the development of pilot projects. It achieved its students, the names of three courses achievements entry, modify, delete, and a total score of computing, such as merit-based ranking function, and data can be saved as disk files, easy to open the editor again. Procedures based on DOS or Windows command-line mode, full screen display, using a simple keyboard commands to operate. Can handle 100 (which can be expanded) of students within the record. Chinese characters in DOS system can correctly deal with the support of Chinese information.
- 2022-08-06 14:18:39下载
- 积分:1
-
实现8251可编程通信实验的汇编源代码
使用环境是星研集成环境...
实现8251可编程通信实验的汇编源代码
使用环境是星研集成环境-8251 programmable communication experiment to achieve the compilation of source code for the use of the environment is an integrated environment for satellite research
- 2022-06-22 04:24:42下载
- 积分:1
-
贪吃蛇游戏c语言源代码
天行健,君子以自强不息 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-05-21 02:02:56下载
- 积分:1
-
A Newton interpolation matlab m
一个牛顿插值的matlab的m文件-A Newton interpolation matlab m-file
- 2022-01-26 07:23:21下载
- 积分:1
-
Python对文件IO操作
filePath="c:/test/tt.txt"
#从文件中读取信息
f=open(filePath, "r")#运用读的方式打开文件,
for line in f: #每次读取文件的一行内容
print(line)
f.close()
#向文件中写入信息
f=open(filePath, "a") #这里有两种方式:第一种是以w的形式,它写入时将会清空以前的数据然后再写入数据,第二种是以a的形式,它以追加的形式写入数据
f.write("我开始向文件中写入信息
")
f.writelines("我已经向文件写入了信息")
f.close()
- 2022-03-02 22:46:33下载
- 积分:1