-
汇编移位操作,asm文件演示如何进行移位操作
汇编移位操作,asm文件演示如何进行移位操作-Compilation shift operation, asm files demonstrate how to carry out shift operation
- 2022-01-31 14:32:18下载
- 积分:1
-
汇编语言中断TSR时间程序(int 1ch)
汇编语言中断TSR时间程序(int 1ch)-assembly language TSR interruption time (int 1ch)
- 2022-03-10 02:13:58下载
- 积分:1
-
DOS 概述及入门及命令集锦
汇编程序(MASM)常见错误信息
DOS 概述及入门及命令集锦
汇编程序(MASM)常见错误信息-An overview and entry-DOS and command allehanda assembler (MASM) Common error messages
- 2023-05-15 02:45:02下载
- 积分:1
-
本书以X86系列微机为背景,从简单的Hello程序开始,系统而详细地阐述了X86微机汇编语言编程的各种基础知识和编程技巧,内容涉及到数据表示、存储器管理、各种数...
本书以X86系列微机为背景,从简单的Hello程序开始,系统而详细地阐述了X86微机汇编语言编程的各种基础知识和编程技巧,内容涉及到数据表示、存储器管理、各种数据类型、过程、与汇编语言相关的体系结构、控制结构、文件、宏指令、位处理指令、字符串指令、MMX指令、类和对象,以及混合语言编程等,尤其是在高级汇编语言(HLA)方面,该书给予了细致深入的讲解。对于有意学习X86汇编语言编程的程序员来说,这是一本难得的好书。 本书的作者Randall Hyde在大学中教授汇编语言十多年,并且开发了好几个商用软件,具有丰富的汇编语言开发经验。该书的英文电子版受到了成千上万的网站和高级程序员的高度评价,已经成为了高级汇编语言编程方面的一本经典之作。虽然该书的出版时间不长,但在Amazon上为该书作出评价的人很多,而且几乎所有的人都给予5星的评价,可见其内容之好。笔者相信,随着时间的推移,它在程序员中的影响回越来越大-this book X86 computer as a background, from a simple Hello proceedings began, and the system described in detail in the X86 PC assembly language programming in basic knowledge and programming skills, which relates to the data, memory management, data types, processes, and assembly language related to the body the grade structure, the control structure, document, macros, handle the orders, string instructions MMX instructions, classes and objects, as well as mixed-language programming, particularly at the senior assembly language (HLA), the book to give a detailed in-depth explanations.
- 2022-09-18 08:30:03下载
- 积分:1
-
本程序实现液晶显示控制器SED1335的字符和汉字显示。
1.显示屏为320*240点阵
2.显示屏前128行为图形方式显示汉字,后112行为文本方式显...
本程序实现液晶显示控制器SED1335的字符和汉字显示。
1.显示屏为320*240点阵
2.显示屏前128行为图形方式显示汉字,后112行为文本方式显示字符
3.汉字的Y坐标以象素点为单位,X坐标以8象素点为单位。-This program SED1335 LCD controller display of characters and Chinese characters. 1. Display of 320* 240 dot matrix 2. Display 128 acts of the former graphics display Chinese characters, act after the 112 character text display 3. Chinese characters Y coordinates to pixel-point unit, X pixel coordinates point to 8 units.
- 2023-05-28 15:05:03下载
- 积分:1
-
当前流行的电子计价秤软件
这是我为电子秤厂商开发的一款液晶软件,直接通过软件设置,可以生产3kg,6kg,15kg,30kg,69kg,100kg,150kg,300kg,600kg,1000kg分度值可达到6000分度,供各位朋友参考!
- 2022-02-04 05:52:31下载
- 积分:1
-
- 2022-02-14 05:30:25下载
- 积分:1
-
MSP430 USART experimental procedure using IAR Embedded Workbenc h software devel...
msp430usart实验程序采用IAR嵌入式工作台软件开发
- 2022-02-22 13:02:44下载
- 积分:1
-
用汇编语言实现:通过键盘输入任意两点坐标,在屏幕上开一个窗口,并设定控制窗口的颜色,要求屏幕呈现颜色的变化。(huangyujie)
用汇编语言实现:通过键盘输入任意两点坐标,在屏幕上开一个窗口,并设定控制窗口的颜色,要求屏幕呈现颜色的变化。(huangyujie)-assembly language : 2:00 keyboarding arbitrary coordinates on the screen in an open window and set the color control window, the screen has requested a change in color. (Huangyujie)
- 2023-01-29 19:25:03下载
- 积分:1
-
vb 分形树
Dim xs As Integer
Dim ys As Integer
Dim alph As Single
Dim lng As Single
Dim m As Integer
Const PI As Single = 3.14159265
Private Function tree(x As Integer, y As Integer, angle As Single, length As Single, n As Integer)
Dim x0 As Integer
Dim y0 As Integer
Dim alpha As Single
Dim beita As Single
Dim leng As Single
BackColor = vbWhite
If n > 0 Then
x0 = x + Cos(angle) * length
y0 = y - Sin(angle) * length
picture1.Line (x, y)-(x0, y0), vbbrake
alpha = angle - PI / 8
beita = angle + PI / 8
leng = 2 * length / 3
Call tree(x0, y0, alpha, leng, n - 1)
&nbs
- 2022-01-24 19:06:52下载
- 积分:1