-
这是2*8字符型点阵液晶的子程序,有详细注释,希望能给大家一些帮助。...
这是2*8字符型点阵液晶的子程序,有详细注释,希望能给大家一些帮助。-this is 2* 8 character dot-matrix LCD subroutine, detailed notes, in hopes of giving you some help.
- 2023-05-18 21:20:03下载
- 积分:1
-
可驱动8/16位数码管显示或64/128只独立LED的BC8271A芯片中断方式编程代码...
可驱动8/16位数码管显示或64/128只独立LED的BC8271A芯片中断方式编程代码-can drive 8/16 Digital Display or 64/128 only independent BC8271A LED chip interrupt programming code
- 2023-07-06 21:25:02下载
- 积分:1
-
本教程主要讲述计算机指令运行机制及汇编语言的相关知识,并用详实的例子来讲解如何使用O汇编语言来编写程序。汇编语言是计算机低级语言,它直接对应的是计算机机器指令,...
本教程主要讲述计算机指令运行机制及汇编语言的相关知识,并用详实的例子来讲解如何使用O汇编语言来编写程序。汇编语言是计算机低级语言,它直接对应的是计算机机器指令,据有执行高效的特点,但由于它的底层性,指令浩繁复杂,如果你熟悉如MASM、FASM或者NASM等其它的汇编语言,那么你将能够很容易地学会使用O语言,它的内部机制与其它汇编语言是一致的;如果你没有接触过汇编语言,那么本教程将为你打开计算机语言的大门,深入细致地解剖聪明的计算机大脑的思考轨迹。如果你使用过C或者其它的计算机语言将对学习O语言有一定的帮助。-the handbook focuses on the operation of computer instructions and mechanisms related to the compilation of language knowledge, and the use of detailed examples to explain how to use the O Series language programming. Language is a compilation of computer low level language, which directly correspond to the computer machinery orders, according to the efficient implementation of the characteristics But since they are bottom, voluminous complex instructions, if you are familiar with such as Shape, FASM or Assemble the compilation and other languages, then you will be able to easily learn how to use O language, The internal mechanism and the other assembly language is unanimous; If you had any contact with assembly language. Then you ha
- 2022-03-28 20:33:02下载
- 积分:1
-
系列除了
- 2023-05-02 14:45:02下载
- 积分:1
-
通过用汇编语言编写液晶屏幕显示程序,连接左右液晶地址口和数据口,通过开关来来控制点亮和点灭.点亮开关则显示欢度佳节4个字样,点灭则屏幕是空....
通过用汇编语言编写液晶屏幕显示程序,连接左右液晶地址口和数据口,通过开关来来控制点亮和点灭.点亮开关则显示欢度佳节4个字样,点灭则屏幕是空.-Through the use of assembly language procedures for the preparation of liquid crystal display, LCD address to connect around the mouth and data port, through the switch to control light and point out. Lit switches show to celebrate the festive season four words, point out the screen is empty.
- 2022-05-24 08:23:55下载
- 积分:1
-
控制道路指示灯的汇编代码
控制道路指示灯的汇编代码-road indicator compiled code
- 2022-02-10 14:15:26下载
- 积分:1
-
关于汇编语言教程的合辑。包括Iczelion的Win32汇编教程,ODBC教程,VXD教程,PE教程。以及其他的教程和论述。...
关于汇编语言教程的合辑。包括Iczelion的Win32汇编教程,ODBC教程,VXD教程,PE教程。以及其他的教程和论述。-Assembly language tutorial on合辑. Including the Win32 compilation Iczelion tutorial, ODBC Guide, VXD tutorial, PE curriculum. As well as other tutorials and discussion.
- 2022-04-30 07:51:45下载
- 积分:1
-
Bootload assembly language
bootload 汇编语言
-Bootload assembly language
- 2022-03-13 02:49:48下载
- 积分:1
-
assembly language LED matrix operation
汇编语言的LED阵的操作-assembly language LED matrix operation
- 2022-05-31 16:19:19下载
- 积分: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