-
对图像做了简单处理,最后一段代码段实现4各功能,汇编运算较多...
对图像做了简单处理,最后一段代码段实现4各功能,汇编运算较多-Do a simple image processing, the realization of the last paragraph of the code segment 4 of the function, the compilation of more computing
- 2022-03-26 11:40:23下载
- 积分: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
-
汇编判断正负的代码
汇编判断正负的代码-compilation of the code of plus or minus judgment
- 2022-03-11 01:57:56下载
- 积分:1
-
遥控小车(51单片机开发例子子程序汇编语言编写)
遥控小车(51单片机开发例子子程序汇编语言编写)-Remote control cars (51 single-chip development to prepare examples of assembly language subroutines)
- 2022-10-12 15:40:03下载
- 积分:1
-
本人写的CS1821测试DEMO程序,CS1821兼容HT1621
本人写的CS1821测试DEMO程序,CS1821兼容HT1621-I write DEMO CS1821 test procedures, CS1821 compatible HT1621
- 2022-06-18 02:56:36下载
- 积分:1
-
it can help you know C++ souce program quckily
it can help you know C++ souce program quckily
- 2022-07-23 15:12:47下载
- 积分:1
-
LCD modle AT1602 显示程序,纯用ASM汇编编写,可作参考使用哦!如有问题请联系我。13710397625,陈sir...
LCD modle AT1602 显示程序,纯用ASM汇编编写,可作参考使用哦!如有问题请联系我。13710397625,陈sir
- 2022-08-20 12:10:33下载
- 积分:1
-
本程序实现标准浮点数除法。
入口参数:被除数在ARGBH1:ARGBL1:EXP1中,除数在ARGBH2:ARGBL2:EXP2中。
出口参数:结果在A...
本程序实现标准浮点数除法。
入口参数:被除数在ARGBH1:ARGBL1:EXP1中,除数在ARGBH2:ARGBL2:EXP2中。
出口参数:结果在ARGBH1:ARGBL1:EXP1中。-This procedure to achieve the standard floating-point division. Entrance parameters: dividend in ARGBH1: ARGBL1: EXP1, the divisor in ARGBH2: ARGBL2: EXP2 in. Export parameters: the results of ARGBH1: ARGBL1: EXP1 in.
- 2022-02-04 10:30:33下载
- 积分:1
-
采用窗口实现Socket消息转发的ASM代码
采用窗口实现Socket消息转发的ASM代码-window Socket using information transmitted by the ASM code
- 2022-01-25 18:51:39下载
- 积分:1
-
用汇编语言实现的一个打字练习程序,程序一个..
利用汇编语言实现的一个打字练习程序,程序界面为典型的Dos窗口,当字符从窗口顶端掉下来后,如果按键与该字符相同,字符变为红色,在打字结束后,给出打字的统计结果,在打字过程中按ESC可退出程序-The use of assembly language to achieve a typing practice program, the program interface for the typical Dos window, when the characters fall from the top window, if the button with the same characters, the character turns red, in the typing after the end of typing results is given , in the typing process by pressing ESC to exit
- 2022-02-13 01:56:11下载
- 积分:1