-
homemade clocks and clock interrupt handling procedures in the establishment of...
自制时钟及时钟中断处理程序的编制
在CMD下运行,在右上角将出现当前的时间,同时可以输入CMD下的各种命令
相当于把单任务的操作系统改成多任务(一个显示时间,一个处理各种命令)-homemade clocks and clock interrupt handling procedures in the establishment of CMD running, in the upper right-hand corner there will be the current time, CMD also can be imported under the order amounts to a single task into multi-task operating system (a show, deal with a variety of orders)
- 2022-01-22 09:07:33下载
- 积分:1
-
8031直接驱动LED的电路
以下是利用8031的I/O口直接驱动LED的电路原理图。电路通过8031的P0、P2口连接一片74LS373和一片27128构...
8031直接驱动LED的电路
以下是利用8031的I/O口直接驱动LED的电路原理图。电路通过8031的P0、P2口连接一片74LS373和一片27128构成外拓存储器,通过P1口直接连接LED,驱动显示器,通过P3.0、P3.1、P3.2、P3.3连接电平开关S1、S2、S3、S4作为逻辑输入控制。-8031 direct-drive LED circuit is the use of 8031 following the I/O port directly drive LED circuit schematic. Circuit through the 8031
- 2022-01-25 21:42:50下载
- 积分:1
-
lcd1602c language program can directly use the very convenient
lcd1602c语言程序可以直接使用
非常方便-lcd1602c language program can directly use the very convenient
- 2022-08-25 09:34:41下载
- 积分:1
-
Ajax的PHP wiki的源代码
ajax php wiki source code
- 2022-02-06 04:41:00下载
- 积分:1
-
这个汇编程序可以显示ASC码,你可以学会如何显示字符…
this ASSEMBLY programme could show ASC codes ,you can leran how to show chars on display
- 2022-05-18 09:53:29下载
- 积分:1
-
fpga的交通灯试验程序 可成功实现功能齐全
fpga的交通灯试验程序 可成功实现功能齐全-fpga testing procedures of the traffic lights are able to achieve a full-featured
- 2022-04-17 02:55:57下载
- 积分:1
-
俄罗斯方块的汇编语言实现,完全在DOS环境中实现。
俄罗斯方块的汇编语言实现,完全在DOS环境中实现。-A good one nice one ,a program in DOS.
- 2022-01-27 09:43:57下载
- 积分:1
-
使用AT89C52驱动LED点阵,包涵源程序及PROTUES制作的原理图,内容完整...
使用AT89C52驱动LED点阵,包涵源程序及PROTUES制作的原理图,内容完整-AT89C52-driven use of LED dot matrix, includes source code and schematics PROTUES production, content integrity
- 2022-02-13 10:52:44下载
- 积分:1
-
ic卡sle4442代码
ic卡sle4442代码
-ic card sle4442 code
- 2022-07-14 15:46:30下载
- 积分: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