-
add64
ADS集成开发环境下的,64位数相加,汇编代码的。(ADS integrated development environment, the 64 digits are added together, the assembly code.
)
- 2012-03-29 16:53:02下载
- 积分:1
-
MSC v5.1库的补充
MSC v5.1库的补充 -MSC version 5.1 for the supplementary
- 2022-12-23 17:30:04下载
- 积分:1
-
liziqundaima
使用粒子群算法实现系统辨识中参数的辨识,得到相应的图形。(Particle swarm optimization algorithm is used to realize the identification of parameters in system identification and get the corresponding graph.)
- 2017-05-15 16:54:05下载
- 积分:1
-
一个小小汇编程序 可以进行翻牌
一个小小汇编程序 可以进行翻牌-a little compilation procedures for transforming
- 2022-02-04 02:48:10下载
- 积分:1
-
LPC2000 启动代码Start.s文件简要分析
LPC2000 启动代码Start.s文件简要分析
先说一下启动代码的位置,启动代码是在板子加电后首先执行的。所以非要用汇编来写才行。
要完成处理器模式的初始化、设置中断向量表、设置各个模式下的堆栈、初始某些变量从而把
系统带到一个合适的运行环境中开始用户程序的运行。
本段设置处理器的模式相关常量
- 2023-08-02 02:00:02下载
- 积分: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
-
如何编写小于20K的Windows程序.演示如何使用:CreateWindow, CreateWindowEx, S endMessage and GetMes
如何编写小于20K的Windows程序.演示如何使用:CreateWindow, CreateWindowEx, S endMessage and GetMessage TranslateMessage and DispatchMessage, CreateFont 演示如何使用API创建Windows窗口控件- How compiles is smaller than the 20K Windows procedure How
demonstrates uses: CreateWindow, CreateWindowEx, S endMessage and
GetMessage TranslateMessage and DispatchMessage, how does CreateFont
demonstrate uses API to found the Windows window to control
- 2022-11-17 12:00:03下载
- 积分:1
-
Reverse_Engineering_for_Beginners-en
Learning asm from beginning
- 2018-05-07 15:25:01下载
- 积分:1
-
847457336
VB汇编指令操作类(CALL注入)源程序,有需要的就下载吧。(VB class assembly instruction (CALL injection) source, there is a need to download it.)
- 2013-08-17 01:06:08下载
- 积分:1
-
keyboard_scanf
实现键盘扫描0-F,可以用来检测键盘的输入(The realization of the keyboard scan 0-F, can be used to detect keyboard input)
- 2009-07-17 21:59:20下载
- 积分:1