登录

最新会员 最新下载

成为了本站VIP会员

今天09:50

成为了本站VIP会员

04月30日 12:23

成为了本站VIP会员

04月29日 21:46

成为了本站VIP会员

04月26日 23:14

成为了本站VIP会员

04月25日 21:33

成为了本站VIP会员

04月23日 14:46
已选条件
  1. 编程语言:C++
  2. 代码类别:汇编语言
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. hunbianchengxu

  部分汇编程序拿出来和大家共享,我积攒了好长时间的,请珍惜(Part of the assembler and share out, I saved for a long time, please cherish)

2
下载
57
浏览
2011-06-10发布

2. sine

  生成正弦函数表,然后保存在文件中,汇编程序通过读取文件,查表生成正弦信号。(Generating the sine function table, and then stored in a file, assembler by reading the file, look-up table generated sinusoidal signal.)

10
下载
98
浏览
2011-05-06发布

3. hex

说明:  汇编与c语言的混合编程,很不错的资料,值得一看(Mixed assembly language programming with c, very good information, worth a visit)

0
下载
87
浏览
2011-04-03发布

4. PIC-remot-and-decode

说明:  PIC 红外线解码 程序 可以自行修改里面的时序以获得最好的效果(PIC IR decoder which can modify the timing to get the best results)

1
下载
61
浏览
2011-03-29发布

5. ATPCS

  简述C语言和汇编语言在编程过程中的相互调用方法(Description C and assembly language programming course in the method call between)

4
下载
51
浏览
2011-01-24发布

6. alu

  汇编实验 有关存储单元之间内容交换 (compiling language)

3
下载
80
浏览
2010-12-25发布

7. word_analysis

  汇编--词法分析,汇编--词法分析,汇编--词法分析,汇编--词法分析(Compilation- lexical analysis)

4
下载
79
浏览
2010-11-10发布

8. xl2000user

  单片机汇编程序,来自xll200user,可以供初学者使用(MCU assembler)

2
下载
89
浏览
2010-11-04发布

9. 20101004-131639

  foxpro-汇编语言命令例解-foxbase建库命令-foxpro实例-(foxpro)

85
下载
62
浏览
2010-10-04发布

10. tetview-win

  用C++编写的可视化小软件,目的是为了更好的观察生成的非结构化网格!(Written in C++, a small software visualization, designed to better observe the formation of the unstructured grid!)

30
下载
61
浏览
2010-08-29发布

11. Windows

  Windows下的32位汇编语言程序设计(罗云彬).pdf,(Windows, 32-bit assembly language programming (Luoyun Bin). Pdf,)

2
下载
138
浏览
2010-06-04发布

12. 1

说明:  利用汇编语言对液晶显示编程使其完成显示字符数字等功能(Use of assembly language programming on the LCD, so the completion of display characters, numbers and other functions)

0
下载
69
浏览
2010-06-02发布

13. HackerDisassemblingUncovered

  黑客反汇编大解密,一本介绍反汇编知识的好书,例子深入浅出,适合有一定汇编基础的人员(Hacker disassembly Uncovered, a book about disassembling, easy to understand examples for someone who knows some assembling)

9
下载
71
浏览
2010-05-10发布

14. mimasuo

说明:  主要是实现密码锁功能,感兴趣的可以下来看看(Lock function is mainly to achieve)

0
下载
60
浏览
2010-04-15发布

15. huffman

  哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统,试为这样的信息收发站写一个哈夫曼编译码系统。 一个完整的系统应具有以下功能: (1) (1) I: 初始化。从终端读入字符集大小 n ,及 n 个字符和 n 个权值,建立哈夫曼树,并将其存于文件hfmtree中。 (2) C: 编码。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3) D: 译码。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中。 (4) P: 打印代码文件。将文件codefi1e以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件codeprint中。 (5) T:打印哈夫曼树。将已在内存中的哈夫曼树以直观的方式(树或凹凸表形式)显示在屏幕上,同时将此字符形式的哈夫曼树写入文件treeprint中。 (利用哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统,试为这样的信息收发站写一个哈夫曼编译码系统。 一个完整的系统应具有以下功能: (1) (1) I: 初始化。从终端读入字符集大小 n ,及 n 个字符和 n 个权值,建立哈夫曼树,并将其存于文件hfmtree中。 (2) C: 编码。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3) D: 译码。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中。 (4) P: 打印代码文件。将文件codefi1e以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件codeprint中。 (5) T:打印哈夫曼树。将已在内存中的哈夫曼树以直观的方式(树或凹凸表形式)显示在屏幕上,同时将此字符形式的哈夫曼树写入文件treeprint中。 )

119
下载
76
浏览
2010-03-09发布

16. arm7tdmi_instruction_set_reference

  ARM Instruction set. Used for Arm Assembly Language

3
下载
62
浏览
2010-01-29发布

17. account

  帐户管理系统,可以删除,添加修改,查询等功能,还可连续创建帐户。(Account management system, you can delete, add modify, query and other functions, but also continuously create an account.)

5
下载
99
浏览
2010-01-20发布

18. AN1004

  This article covers the so-called "min-cost flow" problem, which has many applications for both TopCoder competitors and professional programmers. The article is targeted to readers who are not familiar with the subject, with a focus more on providing a general understanding of the ideas involved rather than heavy theory or technical details for a more in-depth look at this topic, check out the references at the end of this article, in particular [1].

4
下载
101
浏览
2009-11-30发布

19. liezhuyuan

  计算方法高斯列主元消去法C程序 保证好用(Method of calculating Gaussian elimination pivot column C program to ensure easy to use)

3
下载
86
浏览
2009-10-14发布

20. Source

  科学与工程数值计算算法(Visual C++版),全是代码(Science and Engineering numerical calculation algorithm (Visual C++ version), all the code)

4
下载
81
浏览
2009-10-07发布