首页
社区
课程
招聘
[求助]IDA 6.8的local bochs debugger 问题
发表于: 2017-9-25 13:59 2904

[求助]IDA 6.8的local bochs debugger 问题

2017-9-25 13:59
2904
下面是我写的64位MASM代码:
TITLE (test.asm)  
EXTERN MessageBoxA: proc 

.data
  text     db 'Hello x64!', 0
  caption  db 'My First x64 Application', 0
.code  
 main PROC  
   sub rsp,28h 
   xor r9d,r9d
   lea r8, caption
   lea rdx, text
   xor rcx,rcx
   call MessageBoxA
   add rsp,28h
	ret  
main ENDP  
END  


编译成exe文件后,在IDA 6.8的WINDBG中能运行,如下:
在IDA 6.8的local bochs debugger不能显示上面的对话框,只显示下面的对话框:
谁知道是什么原因?

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 0
支持
分享
最新回复 (0)
游客
登录 | 注册 方可回帖
返回