-
本源代码是实际产品代码,百分之百产品代码,有任何疑问可以Q我...
本源代码是实际产品代码,百分之百产品代码,有任何疑问可以Q我-Source code is the actual product code, product code 100 percent, have any questions I can Q
- 2023-08-25 05:10:02下载
- 积分:1
-
Assembly language curriculum design, " text readers"
汇编语言课程设计《文本阅读器》-Assembly language curriculum design, " text readers"
- 2022-03-09 09:37:00下载
- 积分:1
-
richedit记事本程序源码,带rc文件
richedit记事本程序源码,带rc文件
-richedit Notepad program source code, with rc files
- 2022-03-16 11:04:14下载
- 积分:1
-
Actual entry MCD1 articles, a single LED lit procedures. The real purpose for le...
MCD1实战入门篇,点亮单个LED的程序。
该实战的目的作为学习和应用MCD1在线调试工具套件,进行项目的软件和硬件
联合调试的范例程序,也就是当做一个用户程序实例,而演示板暂时充当用户电
路的角色。这样就构成了一个软件、硬件齐全的自制项目模拟环境。
本程序实现的功能是,把端口RC的8条引脚全部设置为输出模式,并让RC0
送出高电平,从而点亮RC0口的一个LED。
该程序可用于PIC16F87X(A)所有系列-Actual entry MCD1 articles, a single LED lit procedures. The real purpose for learning and application debugging MCD1 online suite of tools to carry out the project software and hardware examples of joint commissioning procedures, that is, as a user instance, and the demo board temporarily to serve as the role of the user circuit. This constitutes a software, hardware, a full range of home-made simulation environment projects. Realize the function of this procedure is that the 8-port RC pin all set to output mode, and sent high RC0, so I lit RC0 a LED. The program can be used to PIC16F87X (A) of all series
- 2023-04-22 08:25:02下载
- 积分:1
-
记事本 汇编语言程序设计 课程设计
记事本 汇编语言程序设计 课程设计 -text editor
- 2022-06-29 04:57:22下载
- 积分:1
-
DA5615,example to illustrate a variety of waveforms can be generated. Download c...
DA5615,实例介绍可生成多种波形。下载者可根据需要方便修改。-DA5615,example to illustrate a variety of waveforms can be generated. Download can easily modify as needed.
- 2022-01-26 04:52:07下载
- 积分:1
-
TLV2544/48 Interface routine
TLV2544/48 Interface routine
- 2022-08-25 01:04:20下载
- 积分:1
-
这是一个游戏程序。
这事一个很经典的游戏――贪吃蛇的游戏源码,用汇编编的。-This is a program for snake games.
- 2022-08-20 05:21:04下载
- 积分:1
-
AT89C2051时钟程序
AT89C2051时钟程序 -AT89C2051 clock procedures
- 2023-04-03 13:45:03下载
- 积分: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