博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《Intel汇编第5版》 汇编调用子过程
阅读量:5034 次
发布时间:2019-06-12

本文共 1554 字,大约阅读时间需要 5 分钟。

一、Call和Ret指令

  

二、在子过程中需要自己保存可能会修改掉的寄存器值,这里可以使用USES伪指令来生成

  

三、一个数组求和的汇编例子

  

1 TITLE Call a Proc Demo 2 INCLUDE Irvine32.inc 3 includelib Irvine32.lib 4 includelib kernel32.lib 5 includelib user32.lib 6  7  8 .data 9 array    DWORD    1000h,2000h,3000h,4000h10 11 .code12 13 ;---------------------------------------------------14 ;15 ; Calcute the sum of an array of 32-bit int integers16 ; Receives:    ESI = the array offset17 ;        ECX = the size of array18 ; Returns:    EAX = sum of an array19 ;---------------------------------------------------20 21 ArraySum PROC22     23     push esi24     push ecx25     mov eax,0    26 L1:27     add eax,[esi]28     add esi,TYPE DWORD29     loop L130     31     pop ecx32     pop esi33     ret34 35 ArraySum endp36 37 ;---------------------------------------------------38 ;39 ; Calcute the sum of an array of 32-bit int integers40 ; Receives:    ESI = the array offset41 ;        ECX = the size of array42 ; Returns:    EAX = sum of an array43 ;---------------------------------------------------44 45 ArraySumWithUses PROC USES    esi ecx46     47     mov eax,0    48 L2:49     add eax,[esi]50     add esi,TYPE DWORD51     loop L252     53     ret54 55 ArraySumWithUses endp56 57 58 59 main PROC60     61     mov esi,offset array62     mov ecx,LENGTHOF array63     call ArraySum64     call DumpRegs65     mov esi,offset array66     mov ecx,LENGTHOF array67     call ArraySumWithUses68     call DumpRegs69     ret70 71 main endp72 73 END main

执行结果:

转载于:https://www.cnblogs.com/doudouyoutang/p/4937878.html

你可能感兴趣的文章
浅谈tcp粘包问题
查看>>
UVA11524构造系数数组+高斯消元解异或方程组
查看>>
排序系列之——冒泡排序、插入排序、选择排序
查看>>
爬虫基础
查看>>
jquery.lazyload延迟加载图片第一屏问题
查看>>
HDU 1011 Starship Troopers (树形DP)
查看>>
手把手教你写DI_1_DI框架有什么?
查看>>
.net常见的一些面试题
查看>>
OGRE 源码编译方法
查看>>
上周热点回顾(10.20-10.26)
查看>>
C#正则表达式引发的CPU跑高问题以及解决方法
查看>>
云计算之路-阿里云上:“黑色30秒”走了,“黑色1秒”来了,真相也许大白了...
查看>>
APScheduler调度器
查看>>
设计模式——原型模式
查看>>
【jQuery UI 1.8 The User Interface Library for jQuery】.学习笔记.1.CSS框架和其他功能
查看>>
如何一个pdf文件拆分为若干个pdf文件
查看>>
web.xml中listener、 filter、servlet 加载顺序及其详解
查看>>
前端chrome浏览器调试总结
查看>>
获取手机验证码修改
查看>>
数据库连接
查看>>