汇编 – 我的.exe程序不是我的预期
发布时间:2020-11-17 15:21:42 所属栏目:Windows 来源:互联网
导读:我的masm源文件如下: qq.asm assume cs:codesegmentcodesegment segmentmov ax, 0ffffhmov ds, axmov al, 00ffhmov bx, 0006hmov [bx], almov al, [0006]mov ah, 0mov dx, 0mov cx, 3s: add dx, axloop smov a
我的masm源文件如下: qq.asm assume cs:codesegment codesegment segment mov ax,0ffffh mov ds,ax mov al,00ffh mov bx,0006h mov [bx],al mov al,[0006] mov ah,0 mov dx,0 mov cx,3 s: add dx,ax loop s mov ax,4c00h int 21h codesegment ends end 我使用masm程序生成一个名为qq.exe的.exe文件.当我使用debug qq.exe -u时,教师如下图所示: 我混淆了我的qq.asm中的“mov al,[0006]”指导员在qq.exe中转向“mov AL,06”. mov al,ds:[0006] (编辑:哈尔滨站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- windows-installer – 安装期间的错误代码2753
- 如何使用GUI独立于.NET或其他Libs为Windows制作便携式C程序
- 在非Qt应用程序中使用基于Qt的DLL
- windows-8 – 屏幕关闭时,WinRT应用程序可以继续运行吗?
- windows-phone-8 – 添加辅助Windows Phone 8磁贴
- windows-phone-7 – 多长时间调用SpriteBatch.Begin()/.End
- 在Windows启动时使用参数启动应用程序
- Windows Containers 大冒险: 优化计划(Dockerfile)
- 汇编 – 我的.exe程序不是我的预期
- .net – 在Windows应用程序中格式化标签内的文本
推荐文章
站长推荐
- 32位数据转8位数据和8位数据转32位数据
- ssms – 使用Windows身份验证时,如何在SQL Serve
- Windows调试工具入门 — windebug
- 获取与Windows Vista上的C#.Net连接的无线网络的
- windows-8 – 在MetroStyle应用程序中使用COM对象
- windows – 启动进程时“print”和“printo”动词
- windows – 用户和内核之间的线程fs段寄存器切换
- windows – ruby win32apistructs(VerQueryValue
- wpf – 使用WiX在应用程序的主要升级中从Windows
- Windows系统·添加Python import 的库/模块路径
热点阅读