-
间歇式LED的装配hcs08se8
这是一个在所述微控制器 HCS08SE8,这使用的 I/O 端口到权力 ─ 断断续续地下了一系列的 LED 的汇编语言代码。此外,通过交换机我们控制序列。
- 2022-05-21 00:19:59下载
- 积分:1
-
个人电脑组装材料
PC汇编资料大全-PC assembly material greatly entire
- 2022-03-14 15:07:08下载
- 积分:1
-
有整数乘法、除法、加法及减法的使用汇编语言子程序
有整数乘法、除法、加法及减法的使用汇编语言子程序-There is an integer multiplication, division, addition and subtraction of the use of assembly language subroutines
- 2022-04-17 19:35:15下载
- 积分:1
-
The driver of C8051, it will bring you very big benfit if you will read it, it i...
C8051的汇编驱动程序,如果能看懂会给你带来很大的好处,学习的好资料.-The driver of C8051, it will bring you very big benfit if you will read it, it is very nice.
- 2023-06-24 05:35:03下载
- 积分:1
-
数控调频台的汇编程序,可对数控调频台进行控制,有很好的效果...
数控调频台的汇编程序,可对数控调频台进行控制,有很好的效果-NC FM conctrol
- 2023-07-03 22:20:03下载
- 积分:1
-
在该系统下,将所有的系统中的所有的设备都一一列举出来…
在dos下编程,列举出系统中的全部PCI设备,显示出厂商和设备号-Under the dos program to enumerate all the PCI devices in the system, indicating that manufacturers and device number
- 2022-03-20 05:24:46下载
- 积分:1
-
利用汇编语言实现一个可以在显示器上显示时、分、秒的电子时钟,并能提供整点报时功能。设计一个基本的具有显示时、分、秒的电子时钟。
到整点或预定的报警时间,能够...
利用汇编语言实现一个可以在显示器上显示时、分、秒的电子时钟,并能提供整点报时功能。设计一个基本的具有显示时、分、秒的电子时钟。
到整点或预定的报警时间,能够以不同的音乐进行报时,可以自行设置闹钟报警时间;
实物演示时要求讲出程序原理和设计思想;
程序运行良好、界面清晰。
-The use of assembly language implementation on a show in the display hours, minutes and seconds of electronic clock, and can provide the whole point timekeeping function. Designed with a basic display hour, minute, second electronic clock. The whole point of the book or the alarm time, be able to carry out a different time in music, you can set their own alarm clock time kind demonstration program called the principle of speaking the idea and design program is running good, clear interface.
- 2022-05-07 23:11:00下载
- 积分:1
-
霓虹灯在唐都一起上运行,dos环境下编译。模拟霓虹灯。
霓虹灯在唐都一起上运行,dos环境下编译。模拟霓虹灯。-It is good.Run it on the Tangdu.
- 2022-11-04 13:55:02下载
- 积分:1
-
查找硬盘坏扇区并快速标出坏扇区 (FindBad v1.3)
查找硬盘坏扇区并快速标出坏扇区 (FindBad v1.3)-you drive bad sector and the rapid deterioration marked Sector (FindBad v1.3)
- 2022-07-01 05:39:49下载
- 积分: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