登录
首页 » Asm » Serial-Comunication.tar

Serial-Comunication.tar

于 2011-05-30 发布 文件大小:7KB
0 125
下载积分: 1 下载次数: 10

代码说明:

  windows系统下汇编语言实现的串口聊天小程序,具有简易的聊天界面,支持聊天记录保存,使用中断及查询方式实现,支持二进制和字符传送。 1. 文件功能描述: 1com1.asm为打开com1通信的源文件 2com2.asm为打开com2通信的源文件 2个源代码除了串口地址不同,其他代码相同 同理1com1.exe 和2com2分别打开com1和com2来通信 2. 二进制传送格式: 当选择菜单二进制传送时(菜单2和3) 发送方输入以空格隔开的2位的16进制数,(不够2位用0补充) 比如可以输入 AB CE 33 3F EC 01 00 0A 再按回车就发送过去了。 (windows system the serial assembly language chat applet with a simple chat interface, support chat history saving, the use of interrupt and query method implemented to support binary and character transfer. 1. File Function Description: 1com1.asm communication to open the source file com1 2com2.asm communication to open the source file com2 2 In addition to the serial port address of the source code is different from other code the same Similarly 1com1.exe and 2com2 open com1 and com2, respectively, to communicate 2. Binary delivery format: Binary transmission when the selection menu (Menu 2 and 3) Enter the sender of the two separated by a space of 16 hexadecimal numbers (not supplemented with 0 2) For example you can enter AB CE 33 3F EC 01 00 0A press Enter to send over.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 网站上只有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
  • 696518资源总数
  • 104388会员总数
  • 18今日下载