-
网站上只有delphi,flash类的源程序,这个用win32汇编写的高空焰火爆炸的程序,当然也用到了mmx指令集,绝对的赏心悦目,假的话,你可以扔板砖...
网站上只有delphi,flash类的源程序,这个用win32汇编写的高空焰火爆炸的程序,当然也用到了mmx指令集,绝对的赏心悦目,假的话,你可以扔板砖-website only delphi, flash kind of source files, This compilation was made using win32 an altitude fireworks explosion procedures, which, of course, used the mmx instruction set. Christopher absolutely false, then you can throw floor tiling
- 2022-03-21 08:59:52下载
- 积分:1
-
system identification Experimental Study
系统辨识的实验研究-system identification Experimental Study
- 2022-07-13 08:35:03下载
- 积分:1
-
电子钟可以显示时间日期,也可自行设置
本程序是c语言原程序,下载到单片机板子上自动运行,显示日期,时间,,有遥控,,还可以自己设置时间,日期,也可以用单片机上的按钮设置,希望我说的已经很详尽了
- 2022-10-05 12:25:03下载
- 积分:1
-
Masm60
说明: (1)把该字符串传送到附加段中偏移量为GET-CHAR开始的内存单元中。
(2)比较该字符串是否与“The Computer”相同,若相同则将AL寄存器的内容置1,否则置0。并要求将比较次数送到BL寄存器中。
(3)检查该字符串是否有“&.”符,若有则用空格符将其替换。
(4)把字符串大写字母传送到附加段中以 CAPS 开始的单元中,其余字符传到以CHART开始的单元中。然后将数据段中存储上述字符串的单元清0。((1) The string is passed to the memory unit in the additional segment whose offset is the start of get-char.
(2) Compare whether the string is the same as "the computer". If it is the same, set the content of Al register to 1, otherwise set it to 0. The comparison times are required to be sent to BL register.
(3) Check that the string has a "&." character, and if so, replace it with a space character.
(4) The uppercase letters of the string are transferred to the cells starting with caps in the additional segment, and the rest of the characters are passed to the cells starting with chart. Then, the unit in the data segment that stores the above string is cleared to 0.)
- 2020-11-03 15:29:42下载
- 积分:1
-
good
IOout的一段程序 很实用 大家要的自己下载吧-good
- 2022-03-18 12:02:33下载
- 积分:1
-
你想知道你是什么星座吗?这是一个用WIN32编的计算你是什么星座,只要输入你的生日就行了...
你想知道你是什么星座吗?这是一个用WIN32编的计算你是什么星座,只要输入你的生日就行了-Do you want to know what constellations you are you? This is a calculation made using WIN32 what constellations you are, just enter your birthday on the list
- 2022-08-20 01:39:31下载
- 积分:1
-
反汇编disasm的源代码
反汇编disasm的源代码
反汇编disasm的源代码
反汇编disasm的源代码-anti-disasm compilation of the source code compilation disasm against the source code of the anti-compilation disasm source code
- 2022-01-26 01:54:39下载
- 积分:1
-
Ti omap1510的bootloader。多同仁们多交流交流。
Ti omap1510的bootloader。多同仁们多交流交流。-Ti omap1510 the bootloader. Tongren have more exchanges and more exchanges.
- 2022-01-25 14:59:29下载
- 积分:1
-
U盘原代码,包括FAT16和USB的所有东东都是开放的,请认真看呀.
U盘原代码,包括FAT16和USB的所有东东都是开放的,请认真看呀.-U disk source code, including FAT16 and USB all Dongdong are open, please carefully looked.
- 2022-04-18 06:30:35下载
- 积分:1
-
2:十进制数的显示
十进制数的显示,就是显示十进制数字 number
DATA SEGMENT
DECIMAL: DW 606D ; 准备输出的十进制数,这里选择我的寝室号 606
DATA ENDS
STACKS SEGMENT STACK
DW 4 DUP(0) ; 开辟四个字的堆栈,初始化为 0
STACKS ENDS
CODES SEGMENT
ASSUME CS:CODES,DS:DATAS,SS:STACKS
START:
MOV AX,DATA
MOV DS,AX ; 初始化 DS
;--------------------------------------------------------------
LEA BX,DECIMAL ; 取出准备输出的十进制数 606 的偏移地址,可以使用 OFFSET 代替
MOV AX,[BX] ; 将数放进 AX
MOV BX,0AH ; 给 BX 初始化为 10(The display of decimal number is the display of decimal number.)
- 2019-06-11 18:29:48下载
- 积分:1